body {
         /* font-family: 'Roboto', sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
      
            should match font for mobile app
            client specifically requested the font
        */
            font-family: 'raleway-light-webfont', sans-serif;  
        
        background: #fff;
    }
    

p {
    font-size: 14px;
}

h5 {
    font-size: 17px;
}

.admin-card {
    border: 1px white solid;
    transition: border-color 0.5s ease;

}
list-bg {
    background:
      radial-gradient(80rem 40rem at -20% -20%, rgba(0,0,0,.035), transparent 55%),
      radial-gradient(80rem 40rem at 120% 120%, rgba(0,0,0,.035), transparent 55%),
      #fff;
  }
  
  /* glassy bubble (inspired by chat bubbles) */
  .bubble-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
  
    background: rgba(245, 247, 250, .65);
    border: 1px solid rgba(230, 233, 237, .85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  
  .bubble-item:hover {
    transform: translateY(-1px);
    background: rgba(245, 247, 250, .85);
  }
  
  .bubble-left {
    min-width: 0; /* allow truncation */
  }
  .bubble-title {
    font-weight: 600;
    line-height: 1.25;
  }
  .bubble-sub {
    color: #6c757d;
    font-size: .9rem;
  }
  .text-truncate-1 {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  
  /* right side: unread + chevron */
  .bubble-right {
    display: flex; align-items: center; gap: .5rem; margin-left: .5rem;
  }
  .bubble-unread {
    display: inline-block;
    padding: .175rem .5rem;
    font-size: .75rem;
    border-radius: 999px;
    background: #e03131; /* Bootstrap danger-ish but a bit muted */
    color: #fff;
    line-height: 1;
    border: 1px solid rgba(0,0,0,.05);
  }
  
  /* subtle divider between rows */
  .bubble-spacer { height: .5rem; }
  
  /* fade-in */
  .fade-in { opacity: 0; transform: translateY(3px); transition: opacity .2s ease, transform .2s ease; }
  .fade-in.show { opacity: 1; transform: translateY(0); }
.admin-card:hover {
    border: #05a85a solid 1px;

}

.login-button {

    padding: auto;
    color: #014f59;
    background: #fff;
    border: solid 2px #014f59;
    transition: color border-color 0.5s ease;
}

.login-button.disabled,
.login-button:disabled {
    background-color: #3cd68c;
}

.login-button:hover {
    color: #ffa701;
    border: solid 2px #ffa701;
    background: #fff;

}

.account-options a {
    font-size: 0.85rem;
    /* Adjust the size as needed */
    color: white;
    /* Default color */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s ease-in-out;
    /* Smooth transition for color change */
}

/* Change color when hovered */
.account-options a:hover {
    color: #ffa701;
    /* Change to your preferred color */
    text-decoration: none;
    /* Optional: Add underline effect on hover */
}

.account-header-links a {
    font-size: 1rem;
    /* Adjust the size as needed */
    color: white;
    /* Default color */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s ease-in-out;
    /* Smooth transition for color change */
    font-weight: 500;
    /* adjust font out of 900 as neeeded */
}

/* Change color when hovered */
.account-header-links a:hover {
    color: #ffa701;
    /* Change to your preferred color */
    text-decoration: none;
    /* Optional: Add underline effect on hover */
}

.account-header-links a.active {
    color: #ffa701;
    /* Change to your preferred color */
    text-decoration: none;
    /* Optional: Add underline effect on hover */
}

.button1 {

    padding: auto;
    color: #fff !important;
    background: #00bf71;
    transition: background-color 0.5s ease;
}

.button1.disabled,
.button1:disabled {
    background-color: #3cd68c;
}

.button1:hover {
    color: #000;
    background: #00A85A;

}

.view-text {
    font-size: 23px;
    display: block;
}

.form-check-input {

    width: 25px;
    height: 25px;
    margin-right: 5px;
    transition: background-color 1s ease;
    border: none;
    background-image: none;
    background-color: #333;
    float: none !important;


}

.main-header .header-top {
    position: relative;
    display: flex;
}

.header-top .stripe.green {
    background-color: #05a85a;
}

.header-top .stripe.yellow {
    background-color: #fef605;
}

.header-top .stripe.red {
    background-color: #fe0001;
}

.header-top .stripe.black {
    background-color: #000;
}

.header-top .stripe {
    height: 10px;
    width: 14.285714286%;
}

.filter-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
}

.filter-list a {
    cursor: pointer;
}

.filter-list a:hover {
    color: #00BF71;
    transition: color 0.5s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
    /* Adjust the duration as needed */
}

.fade-in.show {
    opacity: 1;
}

.nav-dropdown {
    background: #222d56;
    color: #fff;
    width: auto;
}

.nav-dropdown .dropdown-item {
    color: #fff;
}

.nav-dropdown .dropdown-item:not(:first-child) {
    border-top: #00BF71 solid 0.4px;
    /* Apply top border to all but the first element */
}

.nav-dropdown .dropdown-item:hover {
    color: #00BF71;
    background: transparent;
}

.form-check-input:checked {
    background-color: #00BF71;
    border-color: #00BF71;

}

.filter-list-link {
    color: #222d56;
    transition: color 0.5s ease;
}

.filter-list-link:hover {
    color: #ff9800;

}

.stats-label-text {
    font-size: small;
    color: #009688;
}

.stats-label {
    font-size: small;
    color: #222d56;
}

.form-check-label {
    padding-top: 2px;
}

.custom-orange {
    background-color: transparent;
    color: black;
    border-radius: 12px;
    border: none;
}

/* Style options dropdown */
.custom-orange option {
    background-color: #f4a637;
    color: white;
}

.search-btn {
    background: #00bf71;
    color: #fff;
    transition: background-color 0.s ease;

}

.table-button {
    margin: 0px;
    background: #00bf71;
    color: #fff;
    transition: background-color 0.5s ease;

}

.table-button:hover {
    background: #00af6f;
    color: #fff;
}

.btn-outline-light {
    background-color: transparent;
    color: black;
    border: none;
    border-radius: 12px;
}

.bg-orange {
    background-color: #00bf71;

}

/* Green dropdown menu */
.dropdown-menu.show {
    background-color: #00bf71;
    border-radius: 12px;
}

/* Options in dropdown */
.dropdown-menu.show .dropdown-item {
    color: white;
}

.dropdown-menu.show .dropdown-item:hover {
    background-color: #00864e;
    /* darker green on hover */
}

.dropdown-item.active {
    background-color: #00864e;
}

.search-input {
    border: none;
    background-color: #F3F3F3;
}

.search-btn:hover {
    background: #00af6f;
    color: #fff;
}

.create-btn {
    background: transparent;
    color: #333;
    transition: border 0.5s ease;

}

.create-btn:hover {
    border: solid 1px #00bf71;

}

.submit-btn {
    background: #00bf71;
    color: #fff;
    transition: border 0.5s ease;


}

.f-sel {
    background-color: #F3F3F3;
    border: none;
    border-radius: 8px;
}

input[type="text"] {
    background-color: #F3F3F3;
    border: none;
    border-radius: 8px;
}

input[type="date"] {
    background-color: #F3F3F3;
    border: none;
    border-radius: 8px;
}
textarea {
    background-color: #F3F3F3 !important;
    border: none !important;
    border-radius: 8px !important;
}
.form-group label {
    text-transform: capitalize;
}
.submit-btn:hover {
    background: #00af6f;
    color: #fff;
}

.breadcrumb {
    --bs-breadcrumb-divider: "›";
}

.breadcrumb a {
    color: #000
}

.breadcrumb .active {
    color: #00bf71
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #00bf71;
}

.nav-tabs {
    border-bottom: solid 0.5px #00BF71;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #00bf6f28;
    border: solid 0.5px #ccc;
    border-bottom: none;
    color: #333
}

.nav-tabs .nav-link {
    color: #014F59;
    border: none;
}
.text-small{
    font-size: 13px;
}
.nav-tabs .nav-link:hover {
    color: #014F59;
    border: none;
    border-bottom: solid 0.5px #333;

}
.user-link .list-group-item{
    background-color: transparent;
    text-align: left;
}
.user-link .list-group-item a{
    color: #000;
    
}
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
}

.navbar {
    background-color: #e3e3e3 !important;
}

.navbar-brand {
    color: #f7db69;
    font-weight: bold;
}

.hero-section {
    background-color: #fff;
    /*background-image: url('/assets/img/logo1b.png');  Update this path */
    background-position: left bottom;
    background-size: auto 34%;
    background-repeat: no-repeat;
    background-position-y: -10px;
    padding: 10px 0;
    text-align: start;
}

.hero-section-mini {
    background-color: transparent;
    /*background-image: url('/assets/img/logo1b.png');  Update this path */
    background-position: left bottom;
    background-size: auto 34%;
    background-repeat: no-repeat;
    background-position-y: -10px;
    color: #000;
    padding: 20px 0;
    text-align: center;
}

.category-card {
    border: 1px solid #a8216b;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-icon {
    font-size: 50px;
    color: #f26a44;
}

.footer {
    color: #000;
    padding: 5px;
    text-align: center;
}

.default-text-block {
    position: relative;
    margin-bottom: 40px;
}

.account-logo {
    max-width: 355px;
    border-radius: 12px;
}

.list-group-item.active {
    color: #fff;
    background-color: #05a85a;
    border: none;


}

.list-group-item.active.filter-list-link {
    color: #fff !important;
    transition: color 0.5s ease;
}

th {
    padding: 15px !important;
    text-align: left;
}

td {
    padding: 15px !important;
    text-align: left;
}

thead {
    background-color: #198754 !important;
    color: #fff;
    border-bottom: none;
}

tr:first-child {
    padding-top: 15px;
    /* Your styles for the first row of the table */
}

.account-body {
    background: #014f59 url('../img/BG.png') no-repeat center center;
    background-size: cover;
}

.guest-body-b {
    background: #014f59 url('../img/BG 2.png') no-repeat center top;
    background-size: contain;
    /* Ensures the whole image fits without cropping */
    width: 100%;
    height: auto;
    /* Makes sure it takes full viewport height */
}

.guest-body-c {
    background:
        url('../img/BG 2 top.png') no-repeat right 0px,
        url('../img/BG 2 bottom.png') no-repeat center bottom 10%,
        #014f59;

    background-size: 290px auto, 290px auto, cover;
    /* Limit width to 90px */
    width: 100%;
    height: 100%;
}

.get-started-btn {
    background-color: rgba(255, 167, 1, 0.65);
    color: #fff;
    backdrop-filter: blur(10px);
    border: solid 1px #fff;
}

.bg-transparent-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    min-height: 100px;

}

.transparent-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top-left-radius: 0px;
    border-radius: 20px;
    padding: 30px;


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

#results {
    width: 100%;
    overflow-x: auto;
}

.guest-body {
    background:
        url('../img/BG 2 top.png') no-repeat right top,
        url('../img/BG 2 bottom.png') no-repeat left bottom,
        #014f59;

    /* background-size: 490px auto, 350px auto, cover; Limit width to 290px */
    width: 100%;
    min-height: 100vh;
    /* Ensures it expands with content */
}

.bg-green {
    background: #fff;
}

#dropdownMenuButton:hover {
    background: #fff0;
}

.dropdown-toggle {}

.bg-nav {
    background: #222d56;
}

.text-green {
    color: #00A85A;
}

.text-yellow {
    color: #ff9800;
}

.acc-btn {
    background: #0d47a1;
    color: fff !important;
}

.acc-btn:hover {
    background: #0b3981;
    color: fff;
}

.acc-alt-link {
    color: #ff9800;
}

.acc-alt-link:hover {
    color: #333;
}

.az-content-dashboard {}

.content {}

#iframe_a {
    width: 100%;
    border: none;
    min-height: 80vh;
}

#show_table {}

.page-link {
    color: #6c757d !important;
}

#_pagination {
    background: transparent;
}

.modal-header {
    background: #cfd8dc;
}

.modal-header {
    background-color: #d0f2f9;
    border-bottom: 2px solid #1b2a4f;
}

.s-item.active {
    color: #ffff00;
}

.d-tab {
    min-height: 60vh;
}

.az-content-header-right .media label {
    color: #fff;
}

.az-dashboard-nav .nav:last-child .nav-link {
    color: #fff;
}

.pointer {
    cursor: pointer;
}

.az-header {
    background-color: #5D4037;
    border-bottom: 2px solid #ff9800;
    ;
}

.az-footer {
    background-color: #0e0202;
    border-top: 1px solid #4CAF50;
    margin-top: auto;
    display: none;
}

.az-header-menu .nav-item>.nav-link {
    color: #22534f;
}

.az-dashboard-nav .nav:first-child .nav-link.active {
    color: #333;
}

.az-dashboard-nav .nav:first-child .nav-link:hover {
    color: #ccc;
}

.row>* {

    padding-left: 0;

}

.az-content-dashboard {
    padding-top: 20px;
}

#viewToggle span i {
    cursor: pointer;
    color: #ccc;
    transition: color 0.5s ease;

}

#show_table {
    width: 95vw;
    overflow-x: auto;
}
#viewToggle span i:hover {
    color: #c78305;
    /* Highlighted state */
}
#viewToggle span.selected i {
    color: #00bf71;
    /* Highlighted state */
}

.search input[type="text"],
.search input[type="search"],
/* For select elements inside .search */
.search select {
    background-color: transparent;
}

.form-group label {
    /* color: #999;
    Light grey color */
}

.modal input,
.modal select {
    background-color: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal .modal-content {

    border: solid 0.5px #607d8b;
    border-radius: 8px;
}

.color-sdagreen {
    color: #005e56
}


.color-1 {
    color: #a8216b
}

.color-2 {
    color: #ec1a4a
}

.color-3 {
    color: #f26a44
}

.color-4 {
    color: #f7db69
}

.color-5 {
    color: #2e9598
}

.border-1 {
    border: 1px solid;
    border-color: #a8216b !important;
}

.border-2 {
    border: 1px solid;
    border-color: #ec1a4a !important;
}

.border-3 {
    border: 1px solid;
    border-color: #f26a44 !important;
}

.border-4 {
    border: 1px solid;
    border-color: #f7db69 !important;
}

.border-5 {
    border: 1px solid;
    border-color: #2e9598 !important;
}

.bg-1 {
    background-color: #a8216b
}

.bg-2 {
    background-color: #ec1a4a
}

.bg-3 {
    background-color: #f26a44
}

.bg-4 {
    background-color: #f7db69
}

.bg-5 {
    background-color: #2e9598
}

.navbar-nav .nav-link.active {
    color: #86a3e6
}

.nav-logo {
    max-height: 55px;

}

.color-sdagold {
    color: #c89b2d
}

.bg-sdagold {
    background-color: #c89b2d
}

.navbar {
    color: #005e56;
    border-bottom: #333 2px solid;

}

.logo {

    font-weight: bold;

    font-family: 'kingthings_exeter-webfont', sans-serif;
}


@font-face {
    font-family: 'montserratalternates-extralight-webfont';
    src: url('/assets/fonts/montserratalternates-extralight-webfont.woff2') format('woff2'),
        url('/assets/fonts/montserratalternates-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'playfairdisplaysc-regular-webfont';
    src: url('/assets/fonts/playfairdisplaysc-regular-webfont.woff2') format('woff2'),
        url('/assets/fonts/playfairdisplaysc-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lanenar_-webfont';
    src: url('/assets/fonts/lanenar_-webfont.woff2') format('woff2'),
        url('/assets/fonts/lanenar_-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


a {
    text-decoration: none;
}


.lanenar-font {
    font-family: 'lanenar_-webfont', sans-serif;

}

.playfair-font {
    font-family: 'playfairdisplaysc-regular-webfont', sans-serif;

}

.montserratalternates-font {
    font-family: 'montserratalternates-extralight-webfont', sans-serif;

}

.caviardreams-font {
    font-family: 'caviardreams-webfont', sans-serif;

}

.small-font {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 3px;
}

.normal-font {
    font-size: 22px;
    line-height: 50px;
    letter-spacing: 3px;
}

.large-font {
    font-size: 35px;
    line-height: 80px;
    letter-spacing: 3px;
}

.dark-mode {
    background-color: #001d1a;
    color: #ffffff;
}

.light-mode {
    background-color: #fcf6e9;
    color: #005e56;

}

th {
    font-weight: 1500;
}

td {
    padding: 15px !important;
    text-align: left;
}

thead {}

tr:first-child {
    padding-top: 15px;
    /* Your styles for the first row of the table */
}



.bg-green {
    background: #fff;
}


.text-green {
    color: #00A85A;
}

.text-yellow {
    color: #ffff00;
}

.acc-btn {
    background: #0d47a1;
    color: fff !important;
}

.acc-btn:hover {
    background: #0b3981;
    color: fff;
}

.acc-alt-link {
    color: #ff9800;
}

.acc-alt-link:hover {
    color: #333;
}

.az-content-dashboard {}

#iframe_a {
    width: 100%;
    border: none;
    min-height: 80vh;
}

#show_table {}

#_pagination {
    background: transparent;
}

.modal-header {
    background: #cfd8dc;
}

.modal-header {
    background-color: #d0f2f9;
    border-bottom: 2px solid #1b2a4f;
}

.s-item.active {
    color: #ffff00;
}

.d-tab {
    min-height: 60vh;
}

.az-content-header-right .media label {
    color: #fff;
}

.az-dashboard-nav .nav:last-child .nav-link {
    color: #fff;
}

.pointer {
    cursor: pointer;
}

.az-header {
    background-color: #5D4037;
    border-bottom: 2px solid #ff9800;
    ;
}

.az-footer {
    background-color: #0e0202;
    border-top: 1px solid #4CAF50;
    margin-top: auto;
    display: none;
}

.az-header-menu .nav-item>.nav-link {
    color: #22534f;
}

.az-dashboard-nav .nav:first-child .nav-link.active {
    color: #333;
}

.az-dashboard-nav .nav:first-child .nav-link:hover {
    color: #ccc;
}

.row>* {

    padding-left: 0;

}

.az-content-dashboard {
    padding-top: 20px;
}



#show_table {
    width: 95vw;
    overflow-x: auto;
}


.search input[type="text"],
.search input[type="search"],
/* For select elements inside .search */
.search select {
    background-color: transparent;
}

.form-group label {
    /*  color: #999;
    Light grey color */
}

.modal input,
.modal select {
    background-color: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal .modal-content {

    border: solid 0.5px #607d8b;
    border-radius: 8px;
}


/* ###### 7.9 Signin  ###### */
.az-signin-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

h2.title-message-color {
    color: #f19c0d;
}

.az-card-signin {
    background: #fff0;
    max-height: 90vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background-color: rgba(255, 255, 255, 0.5);  */
}

@media (min-width: 480px) {
    .az-card-signin {
        /*         border: 1px solid #cdd4e0;
 */
        max-width: 460px;
        padding: 30px 35px;
    }
}

.az-signin-header h2 {
    font-weight: 500;
    color: #5b47fb;
    letter-spacing: -1px;
}

.az-signin-header h4 {
    font-weight: 400;
    color: #1c273c;
    margin-bottom: 25px;
}

.az-signin-header label {
    color: #7987a1;
}

.az-signin-header .form-control {
    color: #1c273c;
    font-weight: 500;
    border-width: 2px;
    border-color: #cdd4e0;
}

.az-signin-header .form-control:focus {
    border-color: #b4bdce;
    box-shadow: none;
}

.az-signin-header .form-control::placeholder {
    font-weight: 400;
    color: #97a3b9;
}

.az-signin-header .btn {
    margin-top: 25px;
}

.az-signin-footer p {
    color: #7987a1;
}

.az-signin-footer p:first-child {
    margin-bottom: 5px;
}

.az-signin-footer p:last-child {
    margin-bottom: 0;
}

.az-signin-footer a {
    color: #1c273c;
    font-weight: 700;
}

.az-signin-footer a:hover,
.az-signin-footer a:focus {
    color: #5b47fb;
}