@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');

.nav-tabs {
    list-style: none; /* Remove default list bullets */
    padding-left: 0; /* Remove any default padding that might cause misalignment */
    border-bottom: none !important;
}

.nav-tabs .nav-item {
    list-style-type: none; /* Explicitly remove bullets from nav items */
}

.nav-link {
    padding: 0.5rem 1rem; /* Ensure consistent padding to avoid text overflow */
}

.tab-content {
    padding: 0px;
    border: 0px solid #ffffff;
    border-top: none;
    min-height: 150px;
}

@media (max-width: 576px) {
    .nav-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    .nav-tabs {
        flex-direction: column; /* Stack tabs vertically on small screens */
    }
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
  /* size it however you like: */
  font-size: 1.25rem;
  /* force the glyph to sit on the same center line as the text */
  line-height: 1;
  vertical-align: middle;
}

.button-sm {
    border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    border: 1px solid #256fa3;
    display: inline-block;
    position: relative;
    top: 4px; /* Shifts the button down by 4px */
}

.material-symbols-sm {
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
  font-size: 0.75rem;
  vertical-align: middle;
}

/* your Material Symbols class */
.material-symbols-outlined2 {
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
  font-size: 1.5rem;
  font-style: normal;

  /* force the glyph to sit on the same center line as the text */
  line-height: 1;
  vertical-align: middle;

  /* if it still looks low, nudge it up a hair: */
  transform: translateY(0.05em);
}

#ace_newsletters .ace_editor {
    font-family: Consolas, Menlo, "Courier New", monospace !important;
}

/* assets/css/aiprofile.css */
.aiPro-light-grey {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 10px 6px;          /* top & bottom = 10px, left & right = 0 */
    /* padding: 10px 4px;  <-- use this if you want all sides */
}

.report-table {
    font-family: "Nunito Sans", sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.report-table th {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    background-color: #266fa2;
    color: #ffffff;
    padding: 2px,4px;
    /*text-transform: uppercase;*/
    letter-spacing: 0.05em;
    position: relative;
}
.report-table th .material-symbols-outlined {
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 2px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.report-table th .material-symbols-outlined:hover {
    transform: scale(1.2);
}
.report-table td {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 100; /* Ultra-light weight to reduce boldness */
    font-size: 0.95rem; /* Slightly smaller to feel less heavy */
    padding: 3px;
    color: #555; /* Lighter color for less visual weight */
    vertical-align: middle;
}
.report-table tr {
    transition: background-color 0.3s ease;
}
.report-table tr:hover {
    background-color: #f1f8ff;
}
.report-table .subject {
    color: #1a73e8;
}
.report-table .email-from {
    font-style: italic;
    color: #555;
}
.report-table .gap {
    color: #e67e22;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .report-table th, .report-table td {
        font-size: 0.9rem;
        padding: 10px;
    }
}

.btn.form-rounded {
  /* flex centering */
  display: inline-flex;
  align-items: center;
  justify-content: center;   /* optional, centers content horizontally */
  gap: 0.5rem;               /* space between icon & text */

  /* reset any Bootstrap line-height/height that was throwing things off */
  line-height: normal !important;
  height: auto !important;

  /* tweak padding as needed (these match roughly Bootstrap defaults) */
  padding: 0.375rem 0.75rem;
}

.btn.form-rounded .material-symbols-outlined .material-symbols-outlined2 .material-symbols-sm {
  /* ensure the icon itself isn’t adding extra vertical space */
  line-height: 1;
  /* optionally bump the size if you like */
  font-size: 1.1em;
}

/*for the pages*/

@media (max-width: 768px) {
    .top-fade-overlay {
        background-attachment: scroll;
    }
}

.pro-header-image {
    text-align: center;
    margin-top: 50px;
}

.pro-header-image img {
    display: inline-block;
    width: 256px;
    height: auto;
}

.pro-text-white-shadow {
    color: white;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 1),
        0 0 8px rgba(0, 0, 0, 0.8);
}

.pro-tagline-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 900; /* Heavy/Boldest */
}

.pro-header-text {
    font-family: 'Italiana', serif;
    font-size: 9vh;
    font-weight: normal;
    text-align: center;
    line-height: 1.1; 
}

.pro-blog-text {
    font-family: 'Italiana', serif;
    font-size: 7vh;
    font-weight: normal;
    text-align: center;
    line-height: 1.1; 
}

.pro-staff-text {
    font-family: 'Italiana', serif;
    font-size: 5vh;
    font-weight: normal;
    text-align: center;
    line-height: 1.1; 
}


.top-fade-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 3 / 1;
    overflow: hidden;
}

.top-fade-overlay::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0 */
    background: linear-gradient(
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.top-fade-overlay > * {
    position: relative;
    z-index: 2;
}

.img-rounded-10 {
    border-radius: 10px;
}

.img-center-rounded {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
}

.img-center-rounded.fade-in {
    opacity: 1;
    transform: translateY(0);
}


.image-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.image-slider {
    position: relative;
    height: auto;
    overflow: hidden;
    transition: height 2s ease;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 4s ease-in-out;
    border-radius: 10px;
    z-index: 2;
}

.slider-image.active {
    opacity: 1;
    z-index: 2; /* bring active image on top */
}

.slider-nav {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px; /* optional */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* put this in your stylesheet after Bootstrap’s CSS */
.row.row-tight {
    margin-left:  -0.5rem;
    margin-right: -0.5rem;
  }
  .row.row-tight > [class*="col-"] {
    padding-left:  0.5rem;
    padding-right: 0.5rem;
  }

  /* half the default 15px padding = 7.5px */
.row.gutter-half {
    margin-left:  -9px;
    margin-right: -9px;
  }
  .row.gutter-half > [class*="col-"] {
    padding-left:  8px;
    padding-right: 8px;
  }

.table-md th,
.table-md td {
  /* pick a value between 0.3rem and 0.75rem */
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
} 

th.psortable {
  cursor: pointer;
}

th.lsortable {
  cursor: pointer;
}

th.rsortable {
  cursor: pointer;
}

/* CORRECT: ASCII hyphen */
.sort-indicator {
  display: none;           /* hide all by default */
  vertical-align: middle;
  margin-left: .25em;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top:   5px solid #333;
  transition: transform .2s ease;
  transform: rotate(0deg);
}

/* show it only on the active column */
th.psortable[data-dir] .sort-indicator {
  display: inline-block;
}

/* point up if asc */
th.psortable[data-dir="asc"] .sort-indicator {
  transform: rotate(180deg);
}

/* show it only on the active column */
th.lsortable[data-dir] .sort-indicator {
  display: inline-block;
}

/* point up if asc */
th.lsortable[data-dir="asc"] .sort-indicator {
  transform: rotate(180deg);
}

/* show it only on the active column */
th.rsortable[data-dir] .sort-indicator {
  display: inline-block;
}

/* point up if asc */
th.rsortable[data-dir="asc"] .sort-indicator {
  transform: rotate(180deg);
}


#buttonFooter .btn {
    border-radius:2rem;/* Opera/IE 8+ */
    -moz-border-radius:2rem;/* Firefox, other Gecko */
    -webkit-border-radius:2rem;/* Safari/Chrome, other WebKit */
    border: 1px solid #256fa3 !important;
    background-color: #256fa3 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px !important;
    font-weight: bold;
}

.location-progress-slot {
    margin-top: 0.25rem;
}

.top5 { margin-top:5px; }

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #256fa3 !important;
}

.btn-forestgreen, .btn-forestgreen:hover, .btn-forestgreen:active, .btn-forestgreen:visited {
    background-color: forestgreen !important;
    color: white !important;
}

.btn-success, .btn-success:hover, .btn-success:active, .btn-success:visited {
    background-color: #61946f !important;
}

.btn-cancel {
    background-color: #c82333; /* Bootstrap danger color */
    color: white;
    border: none;
}

.btn-cancel:hover,
.btn-cancel:active,
.btn-cancel:visited {
    background-color: #c82333; /* Slightly darker shade */
    color: white;
}

.btn-darkblue {
    background-color: darkblue; /* Bootstrap danger color */
    color: white;
    border: none;
}

.btn-darkblue:hover,
.btn-darkblue:active,
.btn-darkblue:visited {
    background-color: darkblue; /* Slightly darker shade */
    color: white;
}

.small {
    font-size: 8pt;
}

.card-shadow {
    box-shadow: 5px 5px 10px -2px rgba(0, 0, 0, 0.15);
}

.card-body.scrollable {
    max-height: 600px;
    overflow-y: auto;
}

.card-body.scrollable4 {
    max-height: 400px;
    overflow-y: auto;
}

.card-body.scrollable3 {
    max-height: 300px;
    overflow-y: auto;
}

.card-body.scrollable2 {
    max-height: 125px;
    overflow-y: auto;
}

.card-body.scrollable1 {
    max-height: 85px;
    overflow-y: auto;
}

.height-ty {
  height: 85px;
}

.height-sm {
  height: 125px;
}

.saved-highlight {
    background-color: #e0ffe0; /* pale green */
    transition: background-color 0.6s ease;
}

.btn-bd-ai {
  font-weight: 600;
  color: #ffffff;
  background-color: #6f42c1; /* Base violet */
  border-color: #6f42c1;
}

.btn-bd-ai:hover {
  color: #ffffff;
  background-color: #5e3ab0; /* ~10% darker */
  border-color: #5e3ab0;
}

.btn-bd-ai:focus {
  color: #ffffff;
  background-color: #5e3ab0;
  border-color: #5e3ab0;
  box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.5); /* --bd-violet-rgb */
}

.btn-bd-ai:active {
  color: #ffffff;
  background-color: #4d329f; /* ~20% darker */
  border-color: #4d329f;
}


/* a container for the animated bar */
.loading-bar {
  width: 100%;
  height: 8px;                /* adjust height to taste */
  background: linear-gradient(
    to right,
    #99ccff 25%,    /* light blue */
    #66a3d2 50%,    /* medium-light blue */
    #3399cc 75%,    /* medium blue */
    #66a3d2 100%    /* medium-light blue again */
  );
  background-size: 200% 100%;
  animation: loadingShimmer 1.2s linear infinite;
  border-radius: 4px;         /* rounded corners if you like */
  overflow: hidden;
  margin: 12px 0;             /* add vertical spacing */
}

@keyframes loadingShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.blue-hr {
    height: 2px;
    background-color: #256fa3;
    border: none;
}

.green-hr {
    height: 2px;
    background-color: seagreen  ;
    border: none;
}

.red-hr {
    height: 4px;
    background-color: #c82333;
    border: none;
}

.td-sm-pad {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.input-button-container {
/*    display: flex;*/
    align-items: center;
}

.input-button-container .form-control {
    margin-right: 10px; /* Adjust the spacing between the input and button as needed */
}

.input-button-container text-bg-cancel {
    padding: 5px 10px; /* Adjust the button padding as needed */
}

#emailHtmlBody {
    font-size: 9px;
}

th.sortable {
    cursor: pointer;
}

th.sortable[data-order="asc"]::after {
    content: ' ▲';
    color: #4c27d3; /* Optional: Ensure visibility */
}

th.sortable[data-order="desc"]::after {
    content: ' ▼';
    color: #4c27d3; /* Optional: Ensure visibility */
}

/* 1) Add this to your stylesheet */
.hover-arrow {
  position: relative;           /* establish a positioning context */
  transition: color .2s ease;   /* optional, smooth text/icon color change */
}

.hover-arrow::after {
  content: "arrow_back";               /* Material Symbol name */
  font-family: "Material Symbols Outlined"; 
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .15s ease;
}

.hover-arrow:hover::after {
  opacity: 1;
}

.form-rounded {
    border-radius:1rem;/* Opera/IE 8+ */
    -moz-border-radius:1rem;/* Firefox, other Gecko */
    -webkit-border-radius:1rem;/* Safari/Chrome, other WebKit */
    border: 1px solid #256fa3;
    padding-left: 10px;
    padding-bottom: 2px;
    margin-bottom: 2px;
    outline-width: 0;
    text-indent: 5px;
    font-size: 12px !important;
    font-weight: bold;
    width: 100%;
    /* new shadow */
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.form-rounded-borderless {
    border-radius:1rem;/* Opera/IE 8+ */
    -moz-border-radius:1rem;/* Firefox, other Gecko */
    -webkit-border-radius:1rem;/* Safari/Chrome, other WebKit */
    border: 0px solid #256fa3;
    padding-left: 10px;
    padding-bottom: 2px;
    margin-bottom: 2px;
    outline-width: 0;
    text-indent: 5px;
    font-size: 12px !important;
    font-weight: bold;
    width: 100%;
}

.form-rounded-90 {
    border-radius:1rem;/* Opera/IE 8+ */
    -moz-border-radius:1rem;/* Firefox, other Gecko */
    -webkit-border-radius:1rem;/* Safari/Chrome, other WebKit */
    border: 1px solid #256fa3;
    padding-left: 10px;
    padding-bottom: 2px;
    margin-bottom: 2px;
    outline-width: 0;
    text-indent: 5px;
    font-size: 12px !important;
    font-weight: bold;
    width: 90%;
}

.form-rounded-h1 {
    border-radius:1rem;/* Opera/IE 8+ */
    -moz-border-radius:1rem;/* Firefox, other Gecko */
    -webkit-border-radius:1rem;/* Safari/Chrome, other WebKit */
    border: 1px solid #256fa3;
    padding-left: 5px;
    padding-bottom: 4px;
    margin-bottom: 0px;
    outline-width: 0;
    text-indent: 5px;
    font-size: 1em;
    font-weight: bold;
}


.form-rounded-sm {
    border-radius:.5rem;/* Opera/IE 8+ */
    -moz-border-radius:.5rem;/* Firefox, other Gecko */
    -webkit-border-radius:.5rem;/* Safari/Chrome, other WebKit */
    border: 1px solid #256fa3;
    padding-left: 2px;
    padding-bottom: 4px;
    margin-bottom: 1px;
    outline-width: 0;
    text-indent: 3px;
    font-size: 11px !important;
}

.form-rounded-80 {
    border-radius:.5rem;/* Opera/IE 8+ */
    -moz-border-radius:.5rem;/* Firefox, other Gecko */
    -webkit-border-radius:.5rem;/* Safari/Chrome, other WebKit */
    border: 1px solid #256fa3;
    padding-left: 2px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    outline-width: 0;
    text-indent: 3px;
    font-size: 9px !important;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
}

.btn-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.text-bg-sub {
    background-color: limegreen; 
    color: white;
    border:none;
}

.text-firebrick {
    color: firebrick;
}

.bg-firebrick {
    background-color: rgba(178, 34, 34, 0.05);
    border-color: rgba(178, 34, 34, 0.15);
}

.card-shadow-firebrick {
    box-shadow: 5px 5px 10px -2px rgba(178, 34, 34, 0.3);
}

.border-firebrick {
    border-color: firebrick;
}

.text-bg-firebrick {
    background-color: firebrick; 
    color: white;
    border:none;
}

.text-gold {
    color: gold;
}

.text-bg-gold {
    background-color: gold; 
    color: black;
    border:none;
}

.bg-gold {
    background-color: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.15);
}

.card-shadow-gold {
    box-shadow: 5px 5px 10px -2px rgba(255, 215, 0, 0.3);
}

.text-forestgreen {
    color: forestgreen;
}

.border-forestgreen {
    border-color: forestgreen;
}

.card-shadow-forestgreen {
    box-shadow: 5px 5px 10px -2px rgba(34, 139, 34, 0.15);
}

.bg-forestgreen {
    background-color: rgba(34, 139, 34, 0.05);
    border-color: rgba(34, 139, 34, 0.15);
}

.text-bg-forestgreen {
    background-color: forestgreen; 
    color: white;
    border:none;
}

.text-bg-lime {
    background-color: lime;
    color: black;
    border:none;
}

.border-lime {
    border-color: lime;
}

.card-shadow-lime {
    box-shadow: 5px 5px 10px -2px rgba(0, 255, 0, 0.15);
}

.bg-lime {
    background-color: rgba(0, 255, 0, 0.05);
    border-color: rgba(0, 255, 0, 0.15);
}

.text-bg-lime {
    background-color: lime; 
    color: white;
    border:none;
}

.text-turquoise {
    color: turquoise;
}

.card-shadow-turquoise {
    box-shadow: 5px 5px 10px -2px rgba(64, 224, 208, 0.15);
}

.bg-turquoise {
    background-color: rgba(64, 224, 208, 0.05);
    border-color: rgba(64, 224, 208, 0.15);
}

.border-turquoise {
    border-color: turquoise;
}

.card-shadow-maroon {
    box-shadow: 5px 5px 10px -2px rgba(64, 224, 208, 0.15);
}

.text-bg-turquoise {
    background-color: turquoise; 
    color: black;
    border:none;
}

.text-maroon {
    color: maroon;
}

.border-maroon {
    border-color: maroon;
}

.bg-maroon {
    background-color: rgba(128, 0, 0, 0.05);
    border-color: rgba(128, 0, 0, 0.15);
}

.card-shadow-maroon {
    box-shadow: 5px 5px 10px -2px rgba(128, 0, 0, 0.15);
}

.text-bg-maroon {
    background-color: maroon; 
    color: white;
    border:none;
}

.text-indigo {
    color: indigo;
}

.bg-indigo {
    background-color: rgba(75, 0, 130, 0.05);
    border-color: rgba(75, 0, 130, 0.15);
}

.card-shadow-indigo {
    box-shadow: 5px 5px 10px -2px rgba(75, 0, 130, 0.3);
}

.border-indigo {
    border-color: indigo;
}

.text-bg-indigo {
    background-color: indigo; 
    color: white;
    border:none;
}

.text-bg-green {
    background-color: green; 
    color: white;
    border:none;
}

.bg-green {
    background-color: rgba(0, 128, 0, 0.05);
    border-color: rgba(0, 128, 0, 0.15);
}

.card-shadow-green {
    box-shadow: 5px 5px 10px -2px rgba(0, 128, 0, 0.3);
}

.text-green {
    background-color: green; 
}

.text-darkorange {
    color: darkorange;
}

.bg-darkorange {
    background-color: rgba(255, 140, 0, 0.05);
    border-color: rgba(255, 140, 0, 0.15);
}

.card-shadow-darkorange {
    box-shadow: 5px 5px 10px -2px rgba(255, 140, 0, 0.3);
}

.border-darkorange {
    border-color: darkorange;
}

.text-bg-darkorange {
    background-color: darkorange; 
    color: white;
    border:none;
}

.text-darkviolet {
    color: darkviolet;
}

.border-darkviolet {
    border-color: darkviolet;
}

.card-shadow-darkviolet {
    box-shadow: 5px 5px 10px -2px rgba(148, 0, 211, 0.3);
}

.bg-darkviolet {
    border-color: rgba(148, 0, 211, 0.1) !important;
}

.text-bg-darkviolet {
    background-color: darkviolet; 
    color: white;
    border:none;
}

.text-darkblue {
    color: darkblue;
}

.bg-darkblue {
    background-color: rgba(0, 0, 139, 0.05);
    border-color: rgba(0, 0, 139, 0.15);
}

.card-shadow-darkblue {
    box-shadow: 5px 5px 10px -2px rgba(0, 0, 139, 0.3);
}

.border-darkblue {
    border-color: darkblue;
}

.text-bg-darkblue {
    background-color: darkblue; 
    color: white;
    border:none;
}

.text-bg-cancel {
    background-color: darkred; 
    color: white;
    border:none;
}

.bg-darkred {
    background-color: rgba(139, 0, 0, 0.05);
    border-color: rgba(139, 0, 0, 0.15);
}

.card-shadow-darkred {
    box-shadow: 5px 5px 10px -2px rgba(139, 0, 0, 0.3);
}

.text-bg-info {
    background-color: rgb(34, 64, 196); 
    color: white;
    border:none;
}

.bg-info {
    background-color: rgba(34, 64, 196, 0.05);
    border-color: rgba(34, 64, 196, 0.15);
}

.card-shadow-info {
    box-shadow: 5px 5px 10px -2px rgba(34, 64, 196, 0.3);
}

.text-bg-success {
    background-color: seagreen; 
    color: white;
    border:none;
}

.bg-success {
    background-color: rgba(46, 139, 87, 0.05);
    border-color: rgba(46, 139, 87, 0.15);
}

.card-shadow-success {
    box-shadow: 5px 5px 10px -2px rgba(46, 139, 87, 0.3);
}

.text-bg-primary {
    background-color: #256fa3; 
    color: white;
    border:none;
}

.bg-primary {
    background-color: rgba(37,111,163, 0.05);
    border-color: rgba(37,111,163, 0.15);
}

.card-shadow-primary {
    box-shadow: 5px 5px 10px -2px rgba(37,111,163, 0.3);
}

.text-bg-skyblue {
    background-color: rgb(135, 206, 235); 
    color: white;
    border:none;
}

.bg-skyblue {
    background-color: rgba(135, 206, 235, 0.05);
    border-color: rgba(135, 206, 235, 0.15);
}

.card-shadow-skyblue {
    box-shadow: 5px 5px 10px -2px rgba(135, 206, 235, 0.3);
}
.text-bg-yellow {
    background-color: yellow; 
    color: black;
    border:none;
}

.bg-yellow {
    background-color: rgba(255, 255, 0, 0.05);
    border-color: rgba(255, 255, 0, 0.15);
}

.card-shadow-yellow {
    box-shadow: 5px 5px 10px -2px rgba(255, 255, 0, 0.3);
}
.text-bg-danger {
    background-color: rgb(226, 32, 48); 
    color: white;
    border:none;
}

.bg-danger {
    background-color: rgba(226, 32, 48, 0.05);
    border-color: rgba(226, 32, 48, 0.15);
}

.card-shadow-danger {
    box-shadow: 5px 5px 10px -2px rgba(226, 32, 48, 0.3);
}

.badge {
    border:none;
}

/* styles.css */

.edit-column {
    width: 80px;
}

.table-lists {
    width: 100%;
    border-collapse: collapse;
}

.table-lists th,
.table-lists td {
    padding: 8px;
    text-align: left;
}

.table-lists th {
    background-color: lightgrey;
}

.table-lists tr:nth-child(even) {
    background-color: rgb(245, 245, 245);
}
/*
.spinner {
    position: relative;
    width: 50px;
    height: 50px;
    margin: auto;
}

.spinner div {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e15b64;
    border-radius: 50%;
    animation: spin 1.2s linear infinite, color-change 1.2s linear infinite;
}

.spinner .dot1 { top: 0; left: 50%; margin-left: -4px; animation-delay: -1.1s; }
.spinner .dot2 { top: 14.64%; left: 85.36%; margin-left: -4px; animation-delay: -1s; }
.spinner .dot3 { top: 50%; left: 100%; margin-left: -4px; animation-delay: -0.9s; }
.spinner .dot4 { top: 85.36%; left: 85.36%; margin-left: -4px; animation-delay: -0.8s; }
.spinner .dot5 { top: 100%; left: 50%; margin-left: -4px; animation-delay: -0.7s; }
.spinner .dot6 { top: 85.36%; left: 14.64%; margin-left: -4px; animation-delay: -0.6s; }
.spinner .dot7 { top: 50%; left: 0; margin-left: -4px; animation-delay: -0.5s; }
.spinner .dot8 { top: 14.64%; left: 14.64%; margin-left: -4px; animation-delay: -0.4s; }

@keyframes spin {
    0% { transform: scale(1); }
    50% { transform: scale(0.5); }
    100% { transform: scale(1); }
}

@keyframes color-change {
    0% { background-color: #e15b64; }
    12.5% { background-color: #f47e60; }
    25% { background-color: #f8b26a; }
    37.5% { background-color: #abbd81; }
    50% { background-color: #849b87; }
    62.5% { background-color: #e15b64; }
    75% { background-color: #f47e60; }
    87.5% { background-color: #f8b26a; }
    100% { background-color: #abbd81; }
}
*/


.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(208, 162, 226, 0.6);
    border-radius: 50%;
    border-top-color: rgb(167, 15, 228);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}


@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

#batch-entry-table {
    width: 100%;
    border-collapse: collapse;
}

#batch-entry-table th, #batch-entry-table td {
    border: 1px solid #f2f2f2; /* Light grey border */
    padding: 8px;
    text-align: left;
}

#batch-entry-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#batch-entry-table th {
    background-color: #f2f2f2; /* Light grey background for headers */
}

.scrollable-div {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}

.scrollable-div-4 {
    height: 400px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}

.scrollable-div-10 {
    height: 1000px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}

.list-group.location-info-list {
    border: none;
}

.list-group-item {
    border: none;
}

.text-bg-returnsub {
    background-color: #751fbb; 
    color: white; 
}

.text-bg-cmd {
    background-color: #256fa3; 
    color: white;
}

.text-cmd {
    color: #256fa3; 
}

.text-light-grey {
    color: lightgrey;
  }

.text-sub {
    color: #1fbb24; 
}

.text-returnsub {
    color: #751fbb; 
}

.text-bg-key {
    background-color: #1f56bb; 
    color: white;
}

.text-key {
    color: #1f56bb; 
}

.text-bg-equity1 {
    background-color: #bd1f8d; 
    color: white;
}

.text-equity1 {
    color: #bd1f8d; 
}

.text-bg-equity12 {
    background-color: #63104a; 
    color: white;
}

.text-equity12 {
    color: #63104a; 
}


.text-bg-equity2 {
    background-color: #0bbb95; 
    color: white;
}

.text-equity2 {
    color: #0bbb95; 
}

.text-bg-equity22 {
    background-color: #08725b; 
    color: white;
}

.text-equity22 {
    color: #08725b; 
}

.text-stc {
    color: #37611f; 
}

.text-stctotal {
    color: #361f61; 
}

.div-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
    margin: 4px;
    width: 100%;
}

@media (max-width: 767px) {
    .custom-padding {
        padding-left: 8px !important;
        padding-right: 5px !important;
    }
}

/* Container for the table */
.table-container {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

/* Table row */
.table-row {
    display: table-row;
}

/* Table header cell */
.table-header-cell,
.table-cell {
    display: table-cell;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Table header cell styles (optional) */
.table-header-cell {
    font-weight: bold;
    background-color: #f2f2f2;
}

/* Responsive styling for small screens */
@media (max-width: 300px) {
    .table-row {
        display: block;
        margin-bottom: 10px;
    }

    .table-cell,
    .table-header-cell {
        display: block;
        box-sizing: border-box;
    }
}

.hidden {
    display: none;
}
  
.visible {
    display: block; /* Or inline, inline-block, etc., depending on the element */
}

