
/*/* start CSS_theme_settings */
.theme-color {
    background-color: var(--primary);
    color: var(--default);
}

.secondary-theme-color {
    background-color: var(--secondary);
    color: var(--default-inverse);
}

.active-theme-color {
    background-color: var(--tertiary);
    color: var(--default);
}

.highlight-theme-color {
    background-color: var(--light);
    color: var(--default-inverse);
}

.inverse-theme-color {
    background-color: var(--inverse);
    color: var(--primary);
}

.success-theme-color {
    background-color: var(--success);
    color: white;
}

.danger-theme-color {
    background-color: var(--danger);
    color: var(--default);
}

.warning-theme-color {
    background-color: var(--warning);
    color: var(--default);
}
.theme-bg{
    background-color: var(--default-bg);
}

/*/* end CSS_theme_settings */

/*/* start CSS_default_settings */
body {
    margin: 0px;
    padding: 0px;;
    background-color: var(--default-bg);
    -webkit-tap-highlight-color: transparent;
    font-family: "Arial", sans-serif;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding: 0px;;
    margin-bottom: .5rem;
    font-weight: bolder;
    line-height: 1.2;
}

h1, .h1{
    font-size: var(--header-font-size);

  }
  
  h2 {
    font-size: calc(var(--header-font-size) * 0.75); 
  }
  
  h3 {
    font-size: calc(var(--header-font-size) * 0.6); 
  }
  
  h4 {
    font-size: calc(var(--header-font-size) * 0.5); 
  }
  
  h5 {
    font-size: calc(var(--header-font-size) * 0.4); 
  }
  
  h6 {
    font-size: calc(var(--header-font-size) * 0.3); 
  }
  
  p {
    font-size: calc(var(--header-font-size) * 0.8); 
    font-family: "Verdana", sans-serif;
  }
/*/* end CSS_default_settings */

/*/* start CSS_header_footer_content_settings */
/* Header */
.fixed-header-top {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--fixed-header-height);
    background-color: var(--secondary);
    align-items: center;
    
    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1;
}

/* Footer */
.fixed-footer-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: var(--fixed-footer-height);
    background-color: var(--primary);
    color: antiquewhite;
    z-index: 1;
}

/* Content */
.content {
    display: flex;
    flex-wrap: wrap;
    padding-top: var(--fixed-header-height);
    padding-bottom: var(--fixed-footer-height);
    height: calc(100vh - var(--fixed-header-height) - var(--fixed-footer-height) - 25px);

}

/* For Setting up Header */
.header-logo {
    display: flex;
    align-items: center; 
}

.header-logo img {
    height: 40px;
    max-width: 100%;
    padding: 0px 0px 0px 5px;
}

.fixed-header-top .header-logo img {
    max-width: 100%; /* Allow the image to be as wide as the parent div */
    height: 60px;
    width: auto; /* Reset width to auto for responsiveness */
}


/* Left Menu */
.left-menu {
    display: block;
    background-color: var(--semi-primary);
    width: var(--fixed-left-menu);
    margin: 5px 0px 5px 5px ;

    height: calc(100vh - var(--fixed-header-height) - var(--fixed-footer-height) - 10px);
    overflow: auto;
    position: relative;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 0px 0px 10px; 
}


/* Data Content */
.data-content {
    background-color: var( --default-bg);
    flex: 1;
    position: relative;
    margin: 5px 5px 5px 5px ;
    overflow: auto;
    height: calc(100vh - var(--fixed-header-height) - var(--fixed-footer-height) - 10px);
    /* z-index: 1;  */

}

/* Right Menu for Notification Purpose*/
.right-menu {
    background-color: var(--warning);
    width: var(--fixed-right-menu);
    margin: 5px 5px 5px 0px ;
    height: calc(100vh - var(--fixed-header-height) - var(--fixed-footer-height) - 10px);
    overflow: auto;
}

/* For Busy View */
.busy-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px; /* Adjust the height as needed */
    background-color: #ccc; /* Default color */
    z-index: 9999; /* Ensure it's on top of other content */
    animation: progressBarAnimation 2s linear infinite;
}

@keyframes progressBarAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Used for Managing Hamburger on Desktop View */
.hamburger input[type="checkbox"]   {
    display: none;
}

.menu-opened {
    display: block !important;
    /* Additional styles for the open menu */
}



/*/* end CSS_header_footer_content_settings */

/*/* start CSS_row_settings */
/* Custom CSS for the .row class */
.row {
    display: flex;
}

/* Reset styles before .row */
.row:before {
    content: "";
    display: block;
    margin-bottom: 10px;
    padding: 0;
    background-color: transparent;
    border: none;
}

/* Reset styles after .row */
.row:after {
    content: "";
    display: block;
    margin-top: 10px;
    padding: 0;
    background-color: transparent;
    border: none;
}

/*/* end CSS_row_settings */

/*/* start CSS_loading_spinner_settings */
.purtabusyspinner {
    width: 80px;
    height: 80px;

    border: 2px solid var(--primary);
    border-top: 3px solid var(--warning);
    border-radius: 100%;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#purtabusyoverlay {
    height: 100%;
    width: 100%;
    background: var(--default-bg) ;
    position: fixed;
    left: 0;
    top: 0;
}

/*/* end CSS_loading_spinner_settings */

/*/* start CSS_container_settings */
.container-fluid {

    padding: 5px;

    margin: 5px;

    background-color: var(--default) ;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px;

    background-color: var(--default) ;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

/*/* end CSS_container_settings */

/*/* start CSS_column_settings */
[class*="col-"] {

    display: inline-block;
    padding: 0px 0px 5px 0px;
    margin: 5px;
    box-sizing: border-box;
    /* position: relative; */
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {

    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/*/* end CSS_column_settings */


/*/* start CSS_div_alignment_settings */
.col {
    flex: 1 0 0%;
}

.top-center {
    display: flex;
    justify-content: center;
}

.top-right {
    display: flex;
    justify-content: flex-end;
}

.top-left {
    display: flex;
    justify-content: flex-start;
}

.middle-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.middle-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.middle-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bottom-center {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bottom-right {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/*/* end CSS_div_alignment_settings */

/*/* start CSS_button_settings */

.btn,
.round-button {
    border: none;
    border: 2px solid var(--primary);
    border-radius: 5px;
    margin-left: 10px;
    padding: 5px 10px;
    background-color: var(--secondary) ;
    font-weight: bolder;
    cursor: pointer;
    transition: transform 0.2s ease-in;
}

.btn:hover{
    border:  0px solid var(--secondary);
    background-color:  var(--light);
    color: var(--default-inverse);
    transform: scale(1.05); 
}

.btn:active {
    transform: scale(0.95); 
}

/*/* end CSS_button_settings */

/*/* start CSS_tab_settings */
.tab-content {
    display: flex;
    /* flex-direction: column; */
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}
/*/* end CSS_tab_settings */


/*/* start CSS_side_menu_active_status_settings */

  /* CSS to reset padding and margin for ul and li */
  #sideMenuList {
    list-style: none;
    padding: 0;
}

  #sideMenuList li {
    padding: 10px 15px ;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  /* CSS for the active menu item */
  #sideMenuList li.active {
      background-color: var(--tertiary) ;
      /* Change to your desired active background color */
      color: var(--inverse);
      /* Change to your desired active text color */
  }

  /* CSS for the inactive menu items */
  #sideMenuList li:not(.active) {
      cursor: pointer;
      /* Add pointer cursor to indicate clickable */
  }

  /* Hover effect for inactive menu items (optional) */
  #sideMenuList li:not(.active):hover {
      background-color: var(--inverse) ;
      color: var(--tertiary) ;
      /* Change to your desired hover background color */
  }

  /*/* end CSS_side_menu_active_status_settings */

  /*/* start CSS_custom_header_settings */
  .h1-title{
    font-size: var(--header-font-size);
    font-family: "Helvetica", Arial, sans-serif;
    font-weight: bold;
  }
  /*/* end CSS_custom_header_settings */

 /*/* start CSS_round-button_settings */
 
  .round-button {
    margin: 0px ;
    padding: 0px;
    width: var(--round-button-size);
    height: var(--round-button-size);
    border: none;
    border-radius: 50%;
    background-color: var(--primary);
    /* Change this color to your preference */
    color: #fff;
    font-size: calc(var(--round-button-size) / 2);
    font-weight: bolder;
    cursor: pointer;
}

/* Hover effect */
.round-button:hover {
    background-color: #0056b3;
    /* Change the color for the hover effect */
}

/* Click effect */
.round-button:active {
    background-color: #003c80;
    /* Change the color for the click effect */
    transform: scale(0.95);
    /* Scale down the button on click */
}
/* <button class="round-button">&gt;</button> */
/*/* end CSS_round-button_settings */

/*/* start CSS_table_settings */
table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
    /* Center-justify the table content */
  }

  th,
  td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
  }

  /* Style for the fixed header */
  thead {
    position: sticky;
    top: 0;
    /* background-color: #f2f2f2; */
  }

  /* Optional styles to enhance the table appearance */
  tbody {
    overflow-y: auto;
    max-height: calc(100vh - var(--fixed-header-height) - var(--fixed-footer-height));
    /* Set the height of the table body to limit the scrollable area */
  }

  tbody img {
        /* Make the image center inside the table */
        display: block;
        margin: 0 auto;


        height: 75px;
        max-width: 150px;
        width: auto;
    }

  /* table.responsive-table tbody tr {
    Set the height for the rows
    height: 30px;
  }*/

  th {
    /* background-color: #f2f2f2; */
    background-color: var( --light);
    color: var(--tertiary);
  }

  tr {
    transition: background-color 0.05s;
  }

 tr:nth-child(odd) {
  background-color: #f5f5f5; /* Light shade color for odd rows */
}

tr:nth-child(even) {
  background-color: #ffffff; /* White color for even rows */
}

  tr:hover {
    background-color: var(--inverse) ;
    color: var(--default-inverse) ;
  }

  tr.active {
    background-color: var(--tertiary) ;
    color: var(--inverse);
  }

  .highlighted {
    background-color: var(--semi-primary) ;
    color: var(--inverse);
  }


  .edit-menu {
    position: relative;
  }
  
  .edit-menu:hover .edit-icon,
  .edit-menu:hover .delete-icon {
    display: inline-block;
  }
  
  .edit-icon,
  .delete-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    font-size: 20px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
  }
  
  .edit-icon {
    color: blue;
  }
  
  .delete-icon {
    color: red;
  }
/*/* end CSS_table_settings */


/*/* start CSS_drop_down_select_settings */
/* Reset some default styles for the select element */
.custom-select-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
    color: #555;
    border-radius: 5px;
    cursor: pointer;
    /* Add some space for the dropdown icon */
    padding-right: 30px;

    /* Set the width to 100% to make it full width */
    width: 100%;
}

/* Styling for the custom dropdown icon */
.custom-select-container::after {
    content: "\25BC";
    /* Unicode character for down arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

/* Additional dropdown icon styles when the select is open */
.custom-select-container.open::after {
    content: "\25B2";
    /* Unicode character for up arrow */
    transform: translateY(-50%) rotate(180deg);
}

/* Styling for the selected option */
option {
    padding: 10px;
    background-color: #fff;
    color: #555;
}

/* Style for the selected option on hover */
option:hover {
    background-color: #f9f9f9;
}

/* Style for the selected option when it is selected */
option:checked {
    background-color: #007bff;
    color: #fff;
}

/*/* end CSS_drop_down_select_settings */

/*/* start CSS_embossed style_settings */
.embossed-style{
    background-color: var(--default-bg) ;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/*/* end CSS_embossed style_settings */

/*/* start CSS_wedget header strip_settings */
.header-strip {
    display: flex;
    
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    /* background-color: var(--inverse) ; */
}
/*/* end CSS_wedget header strip_settings */
