/* user.css */
/* 02/04/2025 SCADA */

/* Keep burger icon on the right */
.navbar-toggler {
    margin-left: auto; /* Pushes the burger icon to the right */
}

/* Custom Background and Menu Bar Colors */
body {
    background-color: rgba(255, 255, 255, 0.9); /* White background */
}

/* Color Schemes */
/* Blue Theme */
.theme-blue .navbar {
    background-color: rgba(141, 172, 220, 0.8); /* Blue navbar */
}
.theme-blue .navbar-nav .nav-link:hover, 
.theme-blue .dropdown-menu a:hover {
    background-color: #99ccff;
    color: #000;
}
.theme-blue .dropdown-menu {
    background-color: rgba(141, 172, 220, 0.8);
}
@media (max-width: 992px) {
    .theme-blue .navbar-collapse {
        background-color: rgba(141, 172, 220, 0.8);
    }
}
.theme-blue .edit-section {
    background-color: rgba(141, 172, 220, 0.2);
}
.theme-blue .list-section {
    background-color: rgba(249,251,231, 0.6);
}
.theme-blue .box1 {
    background-color: rgba(141, 172, 220, 0.2);
}
.theme-blue .box2 {
    background-color: rgba(249,251,231, 0.6);
}
/*** styled numbers  ***/
.theme-blue .step-number-round {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #0000FF; /* Darkish Blue 007BFF  Vdark #0000FF   */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 20px;             /* Fixed width */
    height: 20px;            /* Same as width for perfect circle */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}
.theme-blue .step-number-square {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.0em;
    background-color: #007BFF;
    border-radius: 4px;      /* Rounded corners - adjust for more/less rounding */
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 15px;             /* Fixed width */
    height: 15px;            /* Same as width for square */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}
.theme-blue .chc {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: center; /* text-center */
}

/* My custom headers class "custom-chl", for left*/
.theme-blue .chl {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: left; /* text-left */
}

/* Yellow Theme */
.theme-yellow .navbar {
    background-color: rgba(255, 223, 0, 0.8); /* Yellow navbar */
}
.theme-yellow .navbar-nav .nav-link:hover, 
.theme-yellow .dropdown-menu a:hover {
    background-color: #A9FF00;  /* #df0 background */
    color: #000;
}
.theme-yellow .dropdown-menu {
    background-color: rgba(255, 223, 0, 0.8);
}
@media (max-width: 992px) {
    .theme-yellow .navbar-collapse {
        background-color: rgba(255, 223, 0, 0.8);
    }
}
.theme-yellow .edit-section {
    background-color: rgba(255, 223, 0, 0.2);
}
.theme-yellow .list-section {
    background-color: rgba(249,251,231, 0.6);
}
.theme-yellow .box1 {
    background-color: rgba(255, 223, 0, 0.2);
}
.theme-yellow .box2 {
    background-color: rgba(249,251,231, 0.6);
}

/*** styled numbers  ***/
.theme-yellow .step-number-round {
    color: #000;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #FFDF00; /* Darkish Yellow #A9FF00  */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 20px;             /* Fixed width */
    height: 20px;            /* Same as width for perfect circle */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}
.theme-yellow .step-number-square {
    color: #000;
    font-weight: bold;
    font-size: 1.0em;
    background-color: #FFDF00;
    border-radius: 4px;      /* Rounded corners - adjust for more/less rounding */
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 15px;             /* Fixed width */
    height: 15px;            /* Same as width for square */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}
.theme-yellow .chc {
    margin-bottom: 0.5rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.0rem; /* pt-6 */
    text-transform: capitalize; /* capitalize */
    text-align: center; /* text-center */
}

/* My custom headers class "custom-chl", for left*/
.theme-yellow .chl {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: left; /* text-left */
}
.theme-yellow .chcb {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #000; /* text-black */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: center; /* text-center */
}
.theme-yellow .chlb {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #000; /* text-black */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: left; /* text-left */
}
.theme-yellow .ctcb {
    margin-bottom: 2rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #000; /* text-black */
    padding-top: 0rem; /* pt-6 */
    text-align: center; /* text-center */
}
/* Green Theme */
.theme-green .navbar {
    background-color: rgba(144, 238, 144, 0.8); /* Light green navbar */
}
.theme-green .navbar-nav .nav-link:hover, 
.theme-green .dropdown-menu a:hover {
    background-color: #DBFF10;  /* 7cfc00 background */
    color: #000;
}
.theme-green .dropdown-menu {
    background-color: rgba(144, 238, 144, 0.8);
}
@media (max-width: 992px) {
    .theme-green .navbar-collapse {
        background-color: rgba(144, 238, 144, 0.8);
    }
}
.theme-green .edit-section {
    background-color: rgba(144, 238, 144, 0.2);
}
.theme-green .list-section {
    background-color: rgba(249,251,231, 0.6);
}
.theme-green .box1 {
    background-color: rgba(144, 238, 144, 0.2);
}
.theme-green .box2 {
    background-color: rgba(249,251,231, 0.6);
}
.theme-green .step-number-round {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #00B625; /* Darkish Green 00B625  Vdark #0000FF   */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 20px;             /* Fixed width */
    height: 20px;            /* Same as width for perfect circle */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}

.theme-green .step-number-square {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.0em;
    background-color: #00FF7B; /* Darkish Green 5CDD00  Vdark #0000FF   */
    border-radius: 4px;      /* Rounded corners - adjust for more/less rounding */
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 15px;             /* Fixed width */
    height: 15px;            /* Same as width for square */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}
.theme-green .chc {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: center; /* text-center */
}

/* My custom headers class "custom-chl", for left*/
.theme-green .chl {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: left; /* text-left */
}

/* Keep any additional styling that's shared across themes */
.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}
.dropdown-menu {
    min-width: auto; /* Only as wide as needed */
}
@media (max-width: 992px) {
    .navbar-collapse {
        max-width: 250px;
        left: 0;
        position: absolute;
        top: 100%;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}

.navbar {
    background-color: rgba(255, 223, 0, 0.8); /* Yellow navbar */
}
/* Color change on hover */
.navbar-nav .nav-link:hover, .dropdown-menu a:hover {
    background-color: #df0;  /* #df0 is shorthand for #ddff00, rgb(221, 255, 0) */
    color: #000; /* Optional: Text color change on hover, #000 is black */
}
.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}
.dropdown-menu {
    min-width: auto; /* Only as wide as needed */
	background-color: rgba(255, 223, 0, 0.8);  /* Yellow background */
}


/* Narrow Burger Menu Dropdown aligned to the left */
@media (max-width: 992px) {
    .navbar-collapse {
        max-width: 250px; /* Limit width for the burger menu */
        left: 0; /* Align dropdown to the left side */
        position: absolute; /* Allows dropdown to move independently */
        top: 100%; /* Dropdown appears just below the navbar */
        z-index: 1000; /* Ensures dropdown appears above the content */
        background-color: rgba(255, 223, 0, 0.8); /* Add background for better visibility */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow for better focus */
    }
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 20px;
}

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*** Fonts Start ***/
/*** fs-1 to fs-6 are defined in bootstrap.css ***/
/*** fs- : Sets the font size to a large size applied on all screen sizes. ***/
/*** fs-md- : Adjusts the font size when the screen width reaches the medium (md) breakpoint. ***/
/*** fs-xxl- : Further reduces the font size at the extra-extra-large (xxl) breakpoint. ***/
.fs-11 {
  font-size: 2rem !important;
}
.fs-10 {
  font-size: calc(1rem + 0.3vw) !important;
}

.fs-9 {
  font-size: 3rem !important;
}
.fs-8 {
  font-size: 2.5rem !important;
}
.fs-7 {
  font-size: 0.875rem !important;
}


/*** Fonts in bootstrap.css
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}
End Fonts in bootstrap.css***/

/*** Font Weights ***/
.fw-thin {
  font-weight: 100 !important;
}

.fw-lighter {
  font-weight: 200 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

/*** Fonts not enabled
  .fs-md-11 {
    font-size: 1.5rem !important;
  }
  .fs-md-10 {
    font-size: 0.875rem !important;
  }
  .fs-md-9 {
    font-size: 1rem !important;
  }
  .fs-md-8 {
    font-size: 1.25rem !important;
  }
  .fs-md-7 {
    font-size: 1.7675rem !important;
  }
  .fs-md-6 {
    font-size: 2.5rem !important;
  }
  .fs-md-5 {
    font-size: 3rem !important;
  }
  .fs-md-4 {
    font-size: 3.53rem !important;
  }
  .fs-md-3 {
    font-size: 3.8146972656rem !important;
  }
  .fs-md-2 {
    font-size: 4.5rem !important;
  }
  .fs-md-1 {
    font-size: 5.9604644775rem !important;
***/

/*** Fonts End ***/

/*** Padding Start ***/
.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.75rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 2.5rem !important;
}

.pt-6 {
  padding-top: 4rem !important;
}

.pt-7 {
  padding-top: 4.5rem !important;
}

.pt-8 {
  padding-top: 5rem !important;
}

.pt-9 {
  padding-top: 6rem !important;
}

.pt-10 {
  padding-top: 7.75rem !important;
}

.pt-11 {
  padding-top: 15rem !important;
}
/*** Padding End ***/

/*** Line Height Start ***/
.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.lh-xl {
  line-height: 1.76rem !important;
}
/*** Line Height End ***/

/*** Column Start ***/
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}


.col-sm-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.col-sm-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-sm-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-sm-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
.col-sm-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-sm-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-sm-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
.col-sm-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-sm-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-sm-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}
.col-sm-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-sm-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-sm-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
  
 
.col-md-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.col-md-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-md-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-md-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
.col-md-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-md-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-md-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
.col-md-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-md-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-md-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}
.col-md-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-md-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-md-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
} 
  
  
.col-lg-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.col-lg-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-lg-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-lg-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
.col-lg-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-lg-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-lg-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
.col-lg-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-lg-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-lg-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}
.col-lg-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-lg-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-lg-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}  

/*** Margin Bottom Start ***/
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.mb-7 {
  margin-bottom: 4.5rem !important;
}

.mb-8 {
  margin-bottom: 5rem !important;
}

.mb-9 {
  margin-bottom: 6rem !important;
}

.mb-10 {
  margin-bottom: 7.75rem !important;
}

.mb-11 {
  margin-bottom: 15rem !important;
}

/*** Line Clamp Start ***/
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-7 {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-9 {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-10 {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-11 {
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-12 {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-13 {
  display: -webkit-box;
  -webkit-line-clamp: 13;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-14 {
  display: -webkit-box;
  -webkit-line-clamp: 14;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.edit-section {
    background-color: #e3f2fd; 
}

.list-section {
    background-color: #f9fbe7; 
}

.section-box {
    border: 2px solid #ccc; 
    padding: 15px; 
    margin-bottom: 20px; 
    border-radius: 5px; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); 
	}

/*!
 * Bootstrap  v5.3.3 font style additions
 */

h8, .h8, h7, .h7  {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
  color: var(--bs-heading-color);	
}

h7, .h7 {
  font-size: 3.0rem;
}
@media (min-width: 1200px) {
  h7, .h7 {
    font-size: 2.5rem;
  }
}

h8, .h8 {
  font-size: 3.5rem;
}
@media (min-width: 1200px) {
  h8, .h8 {
    font-size: 3.0rem;
  }
}
.table {
    max-width: 750px;  /* Limit width increased from 650px */
	border-width: 2 !important;
	background-color: #e3f2fd !important; 
}

.custom-table {
    background-color: #f9fbe7 !important;
}

.custom-table tr,
.custom-table th,
.custom-table td {
    background-color: #f9fbe7 !important;
}

.model-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.model-name {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* My custom headers class "custom-chc", for centred*/
.chc {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: center; /* text-center */
}

/* My custom headers class "custom-chl", for left*/
.chl {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #28a745; /* text-success #28a745 */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: left; /* text-left */
}
.chcb {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #000; /* text-black */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: center; /* text-center */
}
/*** Custom Heading Left Black  ***/
.chlb {
    margin-bottom: 1rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #000; /* text-black */
    font-weight: bold; /* fw-bold */
    padding-top: 1.5rem; /* pt-6 */
    text-transform: capitalize; /* text-capitalize */
    text-align: left; /* text-left */
}
/*** Custom Text Centred Black  ***/
.ctcb {
    margin-bottom: 2rem; /* mb-x1 */
    font-size: fs-8; /* fs-8 */
    font-size: fs-md-7; /* fs-md-7 */
    font-size: fs-xxl-6; /* fs-xxl-6 */
    color: #000; /* text-black */
    padding-top: 0rem; /* pt-6 */
    text-align: center; /* text-center */
}
/*** Custom image Block  ***/
.cimg1 {
  display: block;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/*** styled numbers  ***/
.step-number-round {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #0000FF; /* Darkish Blue 007BFF */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 20px;             /* Fixed width */
    height: 20px;            /* Same as width for perfect circle */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}

.step-number-square {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.0em;
    background-color: #007BFF;
    border-radius: 4px;      /* Rounded corners - adjust for more/less rounding */
    display: inline-flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 15px;             /* Fixed width */
    height: 15px;            /* Same as width for square */
    line-height: 1;          /* Prevents line-height from affecting centering */
    text-align: center;
    margin-right: 5px;       /* Optional: space between number and text */
}

.menu-updates-container {
  width: fit-content; /* Make container only as wide as needed */
  margin: 0 auto; /* Center the container horizontally */
}

.menu-updates-title {
  text-align: center; /* Center the title text */
  margin-bottom: 2px;
}

.menu-item {
  text-align: left;
  display: block;
  padding-left: 0px;
}

.menu-subitem {
  text-align: left;
  display: block;
  padding-left: 20px; /* Indent subitems */
}


.menu-container {
  text-align: center;
}

.menu-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-list {
  display: inline-block;
  text-align: left;
  list-style-type: none;
  padding-left: 0;
}

.menu-list ul {
  list-style-type: none;
  padding-left: 20px;
}

.menu-list li::before {
  content: "•";
  margin-right: 5px;
}

.menu-list ul li::before {
  content: "◦";
}

/* Link styling for clickable image names From Claude */
.image-link {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.image-link:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Error highlighting styles */
.error-row {
    background-color: #f8d7da !important;
    color: #721c24;
}

.warning-row {
    background-color: #fff3cd !important;
    color: #856404;
}

.error-badge {
    background-color: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}

.warning-badge {
    background-color: #ffc107;
    color: #212529;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}

.integrity-summary {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.error-count {
    color: #dc3545;
    font-weight: bold;
}

.warning-count {
    color: #ffc107;
    font-weight: bold;
}

.success-count {
    color: #28a745;
    font-weight: bold;
}

.view-options {
    margin-bottom: 20px;
}

.btn-group {
    margin-right: 10px;
}

.scan-controls {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 5px;
}
