@font-face {
    font-family: LatoMedium;
    src: url('/fonts/Lato-Medium.ttf');
}

@font-face {
    font-family: LatoSemiBold;
    src: url('/fonts/Lato-Semibold.ttf');
}

@font-face {
    font-family: LatoBold;
    src: url('/fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: MontserratSemiBold;
    src: url('/fonts/Montserrat-SemiBold.ttf');
}

.ordering {
    background: url('../img/sort_both.png') no-repeat center right;
}

.ordering {
    cursor: pointer;
    background: url('../img/sort_both.png') no-repeat center right;
}

.ordering.asc {
    background: url('../img/sort_asc.png') no-repeat center right;
}

.ordering.desc {
    background: url('../img/sort_desc.png') no-repeat center right;
}

.ordering-rr {
    background: url('../img/sort_both.png') no-repeat center right;
}

.ordering-rr {
    cursor: pointer;
    background: url('../img/sort_both.png') no-repeat center right;
}

.ordering-rr.asc {
    background: url('../img/sort_asc.png') no-repeat center right;
}

.ordering-rr.desc {
    background: url('../img/sort_desc.png') no-repeat center right;
}

.div-dropdown-menu {
    border: 3px solid #E0E5E7;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.content-row {
    min-height: calc(100vh);
}

:root {
    --nav-width: 120px;
    --hub-sidebar-width: 240px;
    --hub-sidebar-bg: #1e293b;
    --hub-sidebar-hover: #334155;
    --hub-sidebar-active: #3b82f6;
    --hub-sidebar-text: #94a3b8;
    --hub-sidebar-text-hover: #ffffff;
    --z-fixed: 100
}

/* ===== MODERNIZED HUB SIDEBAR ===== */
.hub-layout {
    position: relative;
    min-height: 100vh;
    background: #f6f8fa;
}

.hub-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--hub-sidebar-width);
    height: 100vh;
    background: var(--hub-sidebar-bg);
    z-index: var(--z-fixed);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hub-sidebar-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.hub-sidebar-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-sidebar-logo img {
    max-width: 160px;
    height: auto;
    transition: opacity 0.3s ease;
}

.hub-sidebar-logo:hover img {
    opacity: 0.9;
}

.hub-sidebar-menu {
    flex: 1;
    padding: 15px 0;
    overflow-y: auto;
}

.hub-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--hub-sidebar-text);
    text-decoration: none;
    font-family: 'LatoMedium', sans-serif;
    font-size: 13px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    margin: 2px 0;
}

.hub-nav-item:hover {
    background: var(--hub-sidebar-hover);
    color: var(--hub-sidebar-text-hover);
    text-decoration: none;
    border-left-color: var(--hub-sidebar-active);
}

.hub-nav-item.active {
    background: var(--hub-sidebar-hover);
    color: var(--hub-sidebar-text-hover);
    border-left-color: var(--hub-sidebar-active);
}

.hub-nav-item.active .hub-nav-icon {
    color: var(--hub-sidebar-active);
}

.hub-nav-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 12px;
    color: var(--hub-sidebar-text);
    transition: color 0.2s ease;
}

.hub-nav-item:hover .hub-nav-icon {
    color: var(--hub-sidebar-active);
}

.hub-nav-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-sidebar-footer {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.hub-nav-logout {
    color: #ef4444 !important;
}

.hub-nav-logout:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

.hub-nav-logout .hub-nav-icon {
    color: #ef4444;
}

.hub-env-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    margin: 0 15px 10px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    color: #fca5a5;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hub-env-warning i {
    font-size: 12px;
}

.hub-main-content {
    margin-left: var(--hub-sidebar-width);
    min-height: 100vh;
    padding: 0;
    transition: margin-left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hub-main-content > .container:first-child {
    flex: 1 0 auto;
    min-width: calc(1200px - var(--hub-sidebar-width));
}

.hub-main-content > .slim-footer {
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .hub-sidebar {
        width: 70px;
    }

    .hub-sidebar-logo img {
        max-width: 40px;
    }

    .hub-nav-label {
        display: none;
    }

    .hub-nav-icon {
        margin-right: 0;
    }

    .hub-nav-item {
        justify-content: center;
        padding: 15px 10px;
    }

    .hub-env-warning span {
        display: none;
    }

    .hub-env-warning {
        padding: 8px;
        margin: 0 10px 10px;
    }

    .hub-main-content {
        margin-left: 70px;
    }
}

@media (max-width: 576px) {
    .hub-sidebar {
        width: 60px;
    }

    .hub-main-content {
        margin-left: 60px;
    }
}

/* ===== LEGACY SUPPORT - Keep old styles for backwards compatibility ===== */
body {
    position: relative;
    transition: .5s;
    background: #f6f8fa;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background-color: #cdd7dd;
    transition: .5s;
    z-index: var(--z-fixed)
}

.main-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s;
    font-size: 12px;
    font-family: MontserratSemiBold;
    color: #000;
}

.nav_link:hover {
    color: var(--white-color)
}

.current {
    background: #b3c4ce;
}

.show {
    width: calc(var(--nav-width) + 156px)
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

body.hub-layout {
    padding-left: 0;
    margin: 0;
}

body:not(.hub-layout) {
    padding-left: calc(var(--nav-width))
}

.show {
    width: calc(var(--nav-width) + 156px)
}

.body-pd {
    padding-left: calc(var(--nav-width) + 188px)
}

.nav_icon {
    font-size: 1.25rem
}

.main-nav-item {
    grid-template-columns: max-content max-content;
    column-gap: 1rem;
    padding: .75rem .75rem .75rem .75rem;
    text-align: center;
    text-decoration-color: #000;
    white-space: nowrap;
}

.slim-footer {
    margin-top: 0px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
}

.slim-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.slim-footer .footer-copyright {
    color: #6c757d;
    font-size: 0.875rem;
}

.slim-footer .footer-links {
    display: flex;
    gap: 1.5rem;
}

.slim-footer .footer-links a {
    color: #6c757d;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.slim-footer .footer-links a:hover {
    color: var(--hub-primary);
}

.slim-footer .footer-links a i {
    margin-right: 0.25rem;
}

#main-content>div:first-child {
    min-height: 100%;
    min-width: 1200px;
}

.app-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.app-header-title {
    font-family: LatoSemiBold;
    color: #d80404;
    font-size: 24px;
}

.app-header-app-name {
    font-family: LatoMedium;
    color: #000000;
    font-size: 14px;
}

.table thead>tr>th {
    background-color: #FFF;
    text-align: center;
    color: #2050df;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
}

.table-striped>tbody>tr {
    font-family: LatoMedium;
    font-size: 12px;
    color: #000 !important;
}

.table-striped>tbody>td {
    font-family: LatoMedium;
    font-size: 12px;
    color: #000 !important;
}

.table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th {
    background-color: #FFF;
    text-align: center;
}

.table-striped>tbody>tr:nth-child(even)>td, .table-striped>tbody>tr:nth-child(even)>th {
    background-color: rgba(205, 215, 221, 0.3);
    text-align: center;
}

.dropdown-menu-button {
    height: 39px;
}

.div-dropdown-menu {
    width: calc(var(--nav-width) + 156px);
    border-radius: 10px;
    border: solid 2px #cdd7dd;
    background-color: #fff;
    color: #000;
    font-family: LatoBold;
    font-size: 14px;
}

.dropdown-menu-selected {
    color: #2050df;
    background-color: #f6f8fa;
}

.div-dropdown-menu .dropdown-divider:last-child {
    display: none
}

.table-holder {
    background: #FFF;
    padding-top: 10px;
    height: 100%;
    border-radius: 10px;
}

.table-footer {
    background: #FFF;
}

.rounded-card {
    padding: 15px 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rounded-card-settings {
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.field-label {
    font-family: LatoBold;
    font-size: 14px;
    color: #b3c4ce;
}

.application-input {
    text-align: center;
    border-radius: 10px;
    border: solid 2px #cdd7dd;
    background-color: #fff;
    color: #000;
    font-family: LatoBold;
    font-size: 14px;
}

.custom_nav .nav-item .nav-link {
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-family: Lato;
    border-radius: 1.5px;
    font-weight: 800;
    font-stretch: normal;
    margin: 0 0 0 15px;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #bcbcbc;
}

.custom_nav .nav-item .nav-link.active {
    border-bottom: 2px solid #d80404 !important;
    color: #d80404 !important;
}

.mockup-input, .mockup-date-picker, .card_mockup_date_picker, .card_mockup_date_picker, .mockup-div {
    text-align: center;
    padding: 11px 7px;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    border-radius: 10px;
    border: solid 2px #cdd7dd;
}

.mockup-input-bottom-line {
    text-align: left;
    padding: 11px 7px;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    width: 100%;
    outline: 0;
    background: #FFF !important;
    border-width: 0 0 2px;
    border-color: #DDD;
    padding-bottom: 10px;
}

.mockup_textArea {
    text-align: center !important;
    line-height: 20px !important;
}
.mockup_textArea_mailing_address {
    text-align: center !important;
    line-height: 20px !important;
}
.mockup-date-picker {
    padding: 11px 7px !important;
    text-align: left !important;
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
}
.card_mockup_date_picker {
    padding: 11px 22px !important;
    text-align: left !important;
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
}
.ellipsis {
    max-width: 40px !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}
.searchItemGene:hover, #searchItemFm:hover{
    cursor: pointer !important;
}
.print_batch_red_button{
    width: 100%;
    height: 33px;
    margin: 42px 20px 10px 0;
    /*padding: 5px 62px 8px 63px;*/
    border-radius: 10px;
    text-align: center;
    border: solid 2px #d80404;
    color: #d80404;
    font-size: 14px;
    font-weight: 800;
    font-family: Lato;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    background-color: rgba(216, 4, 4, 0.1);
}

.print_batch_detail_show
{
    margin-top: 10px !important;
}
.mockup-select {
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
    letter-spacing: normal;
    border-radius: 10px;
    border: solid 2px #cdd7dd;
    background-color: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.select2-selection__arrow {
    display: none !important;
}

.mockup-input:focus, .mockup-date-picker:focus, .card_mockup_date_picker:focus, .mockup-select:focus {
    border: solid 2px #2050df !important;
}

.mockup-label {
    font-family: Lato;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #b3c4ce;
}

.mockup-radio-label {
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
}

.image_placeholder {
    width: 200px;
    height: 200px;
    margin: 0 0 10px;
    padding: 68px 70px;
    border-radius: 10px;
    background-color: rgba(205, 215, 221, 0.35);
}

.image_container {
    border-radius: 10px;
    margin: 0 0 10px;
    object-fit: contain;
}

img.icon_profile_photo {
    width: 60px;
    height: 64px;
    padding: 2px 2px 2px 1px;
    object-fit: contain;
}

.image_button_lbl {
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.icon_plus-circle {
    width: 16px;
    height: 16px;
    margin: 1px 0 0 5px;
    padding: 1px 0 0 1px;
    object-fit: contain;
}

.cursor-pointer {
    cursor: pointer !important;
}

.save_profile_btn {
    width: 200px;
    height: 33px;
    margin: 42px 20px 10px 0;
    /*padding: 5px 62px 8px 63px;*/
    border-radius: 10px;
    text-align: center;
    border: solid 2px #d80404;
    background-color: rgba(216, 4, 4, 0.1);
    cursor: pointer;
}

.save_profile_lbl, .mockup_red_lbl {
    width: 75px;
    height: 17px;
    font-family: Lato;
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    white-space: nowrap;
    letter-spacing: normal;
    text-align: center;
    color: #d80404;
}

.cancel_profile_btn {
    width: 200px;
    height: 33px;
    margin: 10px 20px 20px 0;
    padding: 5px 78px 8px 79px;
    border-radius: 10px;
    border: solid 2px #b3c4ce;
    cursor: pointer;
}

.mockup_gray_btn {
    height: 33px;
    margin: 42px 20px 10px 0;
    padding: 5px 10px 8px 10px;
    border-radius: 10px;
    border: solid 2px #b3c4ce;
    cursor: pointer;
}

.mockup_red_btn {
    height: 33px;
    margin: 42px 20px 10px 0;
    /*padding: 5px 62px 8px 63px;*/
    border-radius: 10px;
    text-align: center;
    border: solid 2px #d80404;
    background-color: rgba(216, 4, 4, 0.1);
    cursor: pointer;
}

.mockup_blue_btn {
    height: 33px;
    margin: 42px 20px 10px 0;
    /*padding: 8px 20px;*/
    border-radius: 10px;
    border: solid 2px #2050df;
    background-color: rgba(32, 80, 223, 0.1);
    cursor: pointer;
}

.mockup_blue_lbl {
    width: 173px;
    height: 17px;
    font-family: Lato;
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #2050df;
}

.cancel_profile_lbl, .mockup_gray_lbl {
    width: 43px;
    height: 17px;
    font-family: Lato;
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #b3c4ce;
}

.select_arrow {
    width: 6px;
    height: 11px;
    margin: 0 3px 0 2px;
    transform: rotate(90deg);
    border: solid 1.5px #2050df;
}

.select-country-div .select2-container--default .selection .select2-selection--single {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
}

.select-province-div .select2-container--default .selection .select2-selection--single {
    border: solid 2px #cdd7dd !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

.select-city-div .select2-container--default .selection .select2-selection--single {
    border: solid 2px #cdd7dd !important;
    border-left: none !important;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.country_select_right_border {
    border-top-right-radius: 'solid 2px #cdd7dd !important';
    border-bottom-right-radius: 'solid 2px #cdd7dd !important';
    border-right: 'solid 2px #cdd7dd !important';
}

.under_select {
    color: #495057 !important;
    line-height: calc(2.5005rem + 2px)-0.1rem !important;
    height: 100% !important;
    margin-top: 3px !important;
}

.horizontal_line {
    border-radius: 2px;
    background-color: rgba(205, 215, 221, 0.5);
}

.mockup_heading {
    /*width: 169px;*/
    height: 19px;
    /* margin: 7px 472px 20px 0; */
    font-family: Lato;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.mockup_sub_heading {
    /*width: 169px;*/
    height: 19px;
    font-family: Lato;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.mockup_sub_heading_red {
    color: #d80404 !important;
}

.mockup_radio_section {
    width: 100%;
    height: 42px;
    margin: 5px 0 0;
    padding: 11px 39px;
    border-radius: 10px;
    background-color: #f6f8fa;
}

.mockup_radio_section_span {
    margin: 0 auto;
    height: 42px;
}

.mockup-label-14 {
    font-size: 14px !important;
}

.mockup_sub_heading_14 {
    font-size: 14px !important;
}

.mockup-label-18 {
    font-size: 18px !important;
}

.mockup_sub_heading_18 {
    font-size: 18px !important;
}

.width-unset {
    width: unset !important;
}
.sub_lable{
    height:0px !important;
}
.table-footer nav {
    margin: 0 auto;
    display: table;
    white-space: nowrap;
}

.table-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table-row;
    white-space: nowrap;
}

.table-footer li {
    display: table-cell;
}

.table-footer .page-link {
    border: 0px !important;
    font-family: LatoMedium;
    font-size: 14px;
    font-color: #000;
}

.table-footer .active .page-link {
    background-color: #FFF !important;
    color: #2050df;
}

.table-footer .active .page-link:hover {
    background-color: #FFF !important;
    color: #2050df;
}

.fade {
    width: 100%;
}

.mockup_tbl table thead tr th {
    text-align: left !important;
}

.mockup_tbl table tbody tr td {
    text-align: left !important;
    border: none;
    color: #000;
    font-weight: 500 !important;
}

.fn-16 {
    font-size: 16px !important;
}

.fn-18 {
    font-size: 18px !important;
}

.d-none {
    display: none !important;
}

.pcaautocomplete.pcatext {
    top: 880px !important;
}

.pcanotification{
    display: none !important;
}

.modal-content, .modal-header, .modal-footer {
    border-radius: 10px !important;
}

/* Modal sizing improvements */
.modal-dialog {
    min-width: 450px;
    max-width: 90vw;
}

.modal-dialog-vertical-center {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

@media (min-width: 576px) {
    .modal-dialog {
        min-width: 500px;
    }
    .modal-dialog-vertical-center {
        min-height: calc(100% - 3.5rem);
    }
}

@media (max-width: 575px) {
    .modal-dialog {
        min-width: auto;
        margin: 0.5rem;
    }
}

.modal-header h6,
.modal-header h5,
.modal-header .modal-title {
    font-family: Lato;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #333;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header .modal-title,
.modal-header h5,
.modal-header h6 {
    margin: 0;
    line-height: 1.5;
}

.modal-header .close {
    margin: 0;
    padding: 0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.modal-footer {
    background-color: transparent !important;
    border-top: none !important;
}

.no-white-space {
    white-space: nowrap;
}

.drag-and-drop {
    width: 100%;
    height: 260px;
    margin: 20px 0;
    /* padding: 45px 94px 5px 97px; */
    border-radius: 10px;
    border: dashed 3px #cdd7dd;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
}

.drag-drop-upper-text {
    color: #2050df;
    font-size: 14px;
    font-weight: 600;
    font-family: Lato;
    margin: 49px 6px 10px 4px;
}

.drag-drop-upper-text>span {
    color: #b3c4ce;
}

.drag-drop-lower-text {
    color: #2050df;
    font-size: 14px;
    font-weight: 600;
    font-family: Lato;
    margin: 1%;
    word-wrap: break-word;
}

.drag-drop-lower-text>span {
    color: #b3c4ce;
}

.print_history_btn {
    width: 100%;
    height: 33px;
    margin: 42px 20px 10px 0;
    /*padding: 5px 62px 8px 63px;*/
    border-radius: 10px;
    text-align: center;
    border: solid 2px #2050df;
    background-color: rgba(32, 80, 223, 0.1);
    cursor: pointer;
}

.secondary_color_background {
    background-color: #e9ecef;
}

.border-input {
    text-align: center;
    padding: 9px 7px;
    width: 49%;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    border-radius: 10px;
    border: solid 2px #fdfdfd;
    background-color: #fff;
    display: inline-block;
}

.border-input:focus {
    border: solid 2px #fdfdfd;
    background-color: #fff;
}

.print_batch_detail_secondary_btn {
    width: 100%;
    height: 33px;
    margin: 42px 20px 10px 0;
    /*padding: 5px 62px 8px 63px;*/
    border-radius: 10px;
    text-align: center;
    border: solid 2px #b3c4ce;
    color: #b3c4ce;
    /* background-color: rgba(32, 80, 223, 0.1); */
    cursor: pointer;
}
.edit_delivery_method_button{
    color: blue !important;
    cursor: pointer !important;
}
.center{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}
.closepopupAlign{
    text-align: center;
    font-size: 16px;
}
.editDeliveryMethodHeading{
    margin-left: 127px !important;
}
.printBatchDeatilHeading{
    margin-top: 14px !important;
}
.message_edit_delivery_method{
    text-align: center;
    padding: 0 87px 0 87px;
    color: red;
    margin-bottom: 8px;
}
.print_batch_detail_danger_btn {
    width: 100%;
    height: 33px;
    margin: 42px 20px 10px 0;
    /* padding: 5px 62px 8px 63px; */
    border-radius: 10px;
    text-align: center;
    border: solid 2px #d80404;
    color: #d80404;
    background-color: rgba(216, 4, 4, 0.1);
    cursor: pointer;
}
.setdelivery{
    margin-top: 28px !important;
}
.print_detail_table {
    border-radius: 15px;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
    border: 1px solid #b3c4ce;
    padding: 5px;
    margin-top: 2px;
}

.mockup-select-bordernone {
    height: 33px;
    font-family: Lato;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
    letter-spacing: normal;
    border: none;
    background-color: transparent;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.mockup-select-bordernone:focus {
    background-color: transparent;
}

.mockup_radio_section2 {
    width: 100%;
    height: 39px;
    margin: 5px 0 0;
    padding: 11px 31%;
    border-radius: 10px;
    background-color: #f6f8fa;
}

.alert-text {
    font-family: LatoBold;
    font-size: 14px;
}

.margin3Inches {
    margin-top: 0.3rem !important;
}

.ESPheight {
    height: 87%;
}

.mockup_black_lbl {
    font-family: Lato;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #000;
}

.Family-Members {
    width: 118px;
    height: 19px;
    margin: 0 706px 20px 20px;
    font-family: Lato;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.Genetic-Father-Genet {
    width: 85px;
    height: 96px;
    margin: 0 45px 0 0;
    font-family: Lato;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.Relation {
    width: 52px;
    height: 17px;
    margin: 30px 47px 0 0;
    font-family: Lato;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #2050df;
}

.Table_heading_family_member {
    font-size: 14px !important;
    font-family: 'Lato' !important;
}

.Table_heading_family_member_id {
    font-size: 14px !important;
    font-family: 'Lato' !important;
    padding-right: 48px !important;
}

.Edit_Table_heading_family_member_id {
    font-size: 14px !important;
    font-family: 'Lato' !important;
    padding-left: 19px !important;
}

.Path {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.Path1 {
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
}

.fm_td_data {
    color: #000 !important;
    font-family: Lato !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
}

.Citizens-were-found {
    width: 269px;
    height: 19px;
    margin: 0 568px 20px 20px;
    font-family: Lato;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.Rectangle-Copy-13 {
    margin-left: 20px !important;
    margin-right: 20px !important;
    height: 2px !important;
    border-radius: 1px !important;
    background-color: rgba(205, 215, 221, 0.5) !important;
}

.View_data_partials {
    color: #000 !important;
    font-size: 14px !important;
}

.cancelAdd_family_member_modal {
    width: 83px!important;
    height: 33px!important;
    border-radius: 10px!important;
    border: solid 2px #b3c4ce!important;
    background-color: rgba(179, 196, 206, 0.1)!important;
    cursor: pointer;
}

.saveAdd_family_member_modal {
    width: 70px!important;
    height: 33px!important;
    margin: 0 0 0 10px!important;
    padding: 4px 20px!important;
    border-radius: 10px!important;
    border: solid 2px #d80404!important;
    background-color: rgba(216, 4, 4, 0.1)!important;
    cursor: pointer;
}

.addfm {
    padding-left: 197px !important;
}

#span_FamilyID {
    color: red!important;
    font-size: 13px!important;
    margin-left: 7px!important;
}

.select2-container--open {
    z-index: 9999999
}

.select2-container {
    width: 100% !important;
    display: block !important;
}

#SelectCountryDiv>span .select2-selection__rendered {
    display: block !important;
    margin-top: 3px !important;
}

#SelectProvinceDiv>span .select2-selection__rendered {
    display: block !important;
    margin-top: 3px !important;
}
#SelectCityeDiv>span .select2-selection__rendered {
    display: block !important;
    margin-top: 3px !important;
}

/* Bootstrap 4 text input with search icon */

.searchDate {
    margin: 0px 0 0 124px;
    width: 300px;
    /* height: 39px; */
    padding: 9px 20px 11px 110px;
    border-radius: 10px;
    border: solid 2px #cdd7dd;
    background-color: #fff;
}

.btn_search {
    border-radius: 10px;
    border: solid 2px #cdd7dd;
    background-color: white !important;
    border-left-color: white;
    margin-top: 12px;
    cursor: pointer;
}

.btn_search:hover {
    border-color: #cdd7dd;
}

.fa-search {
    color: black;
}

/* Override for sidebar navigation icons */
.hub-nav-icon .fa-search {
    color: inherit !important;
}

.searchInput {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: solid 2px #cdd7dd;
    border-right-color: white;
    text-align: center;
    margin-top: 12px;
}
.searchInputHeight {
   height: 39px;
}
.searchButtonHeight{
    height: 39px;
}
.searchInput::placeholder {
    color: #bcbcbc;
}

.dob_lable {
    margin: 0px 0px 8px 128px !important;
    padding-bottom: 4px;
}

.searchShowAll_btn {
    background-color: white;
    /* border-color: white; */
    color: #b3c4ce;
    border: 2px solid white;
    cursor: pointer;
}

#SelectCountryDiv>span .select2-selection__placeholder {
    color: #bcbcbc !important;
}

#SelectProvinceDiv>span .select2-selection__placeholder {
    color: #bcbcbc !important;
}

#SelectCityeDiv>span .select2-selection__placeholder {
    color: #bcbcbc !important;
}

.table thead>tr>th {
    text-transform: capitalize;
}

.grey_placeholder::placeholder {
    color: #bcbcbc;
}

.removeBGAndBorder{
    border: none;
    background-color: transparent;
}
.removeBGAndBorder:focus{
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
.btn_search_print_batch {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border: solid 2px #cdd7dd;
    background-color: white !important;
    border-left: none;
    margin-top: 12px;
    padding-top: 7px;
    cursor: pointer;
}

.btn_search_print_batch:hover {
    border-color: #cdd7dd;
}
.verticalMiddleAlign > tr > td{
    vertical-align: middle;
}
.grayBoxShadow{
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 5px 0px !important;
}

.cardReplaceRedButton{
    height: 33px;
    border-radius: 10px;
    text-align: center;
    border: solid 2px #d80404;
    background-color: rgba(216, 4, 4, 0.1);
    float: right;
    cursor: pointer;
}
.cardReplaceRedLbl{
    width: 75px;
    height: 17px;
    font-family: Lato;
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    /* line-height: normal; */
    white-space: nowrap;
    letter-spacing: normal;
    text-align: center;
    color: #d80404;
    cursor: pointer;
    margin-bottom: 0px;
}

.cardReplaceBlueButton{
    height: 33px;
    border-radius: 10px;
    text-align: center;
    border: solid 2px #2050df;
    background-color: rgba(32, 80, 223, 0.1);
    float: right;
    cursor: pointer;
}
.cardReplaceBlueLbl{
    width: 75px;
    height: 17px;
    font-family: Lato;
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    /* line-height: normal; */
    white-space: nowrap;
    letter-spacing: normal;
    text-align: center;
    color: #2050df;
    cursor: pointer;
    margin-bottom: 0px;
}
.widthAuto{
    width: auto !important;
}
.signature{
    width: 106px;
    height: 42px;
    border-radius: 5px;
    border: solid 1px #cdd7dd;
    background-color: #f6f8fa;
}

.table-striped-after-two-rows tbody tr {
    background: rgba(205, 215, 221, 0.3);
}

.table-striped-after-two-rows tbody tr td {
    vertical-align: middle !important;
}

.table-striped-after-two-rows tbody tr:nth-child(4n+1), .table-striped-after-two-rows tbody tr:nth-child(4n+2) {
    background: #FFF;
}


.text-black{
    color: black !important;
}

.custom-three-row-design {
    background: rgba(205, 215, 221, 0.3);
}

table thead>tr.custom-three-row-design>th{
    background: rgba(205, 215, 221, 0);
}

.text-align-left{
    text-align: left !important;
}

.green-dot {
  height: 15px;
  width: 15px;
  background-color: #00FF00;
  border-radius: 50%;
  display: inline-block;
}

.red-dot {
  height: 15px;
  width: 15px;
  background-color: #FF0000;
  border-radius: 50%;
  display: inline-block;
}

.election-search-label{
    width:  140px;
    display: table-cell;
    padding: 12px;
    vertical-align: middle;
}

.election-error{
    color: #FF0000; 
}

.election-positive{
    color: #00FF00; 
}

/*accordion*/
.mb-0 > a {
    display: block;
    position: relative;
}

.mb-0 > a:after {
    content: "\f078"; /* fa-chevron-down */
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
}

.mb-0 > a[aria-expanded="true"]:after {
    content: "\f077"; /* fa-chevron-up */
}

/*accordion custom style*/
.card-header {
    background-color: #c45911;
}

.card-header a{
    color: black;
    text-decoration: none;
}

.card-header {
    background-color: #EFEFEF;
}

.card-header-inner a{
    color: black;
    text-decoration: none;
}

.questionnaire-btn{
    background-color: #f9f9f9;
    border: 1px solid #dcdcdc;
    font-weight: 500;
    color: #000000;
    outline: none !important;
    box-shadow: none !important;
}

.questionnaire-btn.active{
    background-color: #fbe6e5 !important;
    border: 1px solid #dc201f !important;
    outline: none !important;
    font-weight: 500;
    color: #000000 !important;
    box-shadow: none !important;
}

.questionnaire-btn:hover{
    background-color: #fbe6e5 !important;
    border: 1px solid #dc201f !important;
    outline: none !important;
    font-weight: 500;
    color: #000000 !important;
    box-shadow: none !important;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

/* Timesheet status badges */
.status-cell .badge,
.status-badge {
    font-size: 0.8rem;
    padding: 0.35em 0.6em;
}

/* My Timesheets day grouping - alternate colors by day */
.day-row-striped {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Portal Mobile Responsive Styles */
@media (max-width: 768px) {
    :root {
        --nav-width: 0px;
    }

    body {
        padding-left: 0 !important;
    }

    /* Hide sidebar wrapper by default on mobile */
    .wrapper > div:first-child {
        display: none !important;
    }

    /* Show sidebar wrapper when mobile-show class is added */
    .wrapper > div:first-child.mobile-show {
        display: block !important;
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        z-index: 99;
        background: #CDD7DD;
    }

    .wrapper > div:first-child.mobile-show .l-navbar {
        position: relative;
        width: 100%;
        height: auto;
    }

    .wrapper > div:first-child.mobile-show #sidebar {
        min-width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
    }

    .wrapper > div:first-child.mobile-show .main-nav {
        flex-direction: row;
        height: auto;
        padding: 10px;
    }

    .wrapper > div:first-child.mobile-show .main-nav > div:first-child {
        width: 100%;
    }

    .wrapper > div:first-child.mobile-show .nav_list {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 100%;
    }

    .wrapper > div:first-child.mobile-show .nav_list > a {
        flex: 0 0 25%;
        max-width: 25%;
        text-align: center;
    }

    .wrapper > div:first-child.mobile-show .main-nav-item {
        padding: 8px 5px;
    }

    .wrapper > div:first-child.mobile-show .main-nav-item img {
        width: 28px;
        height: 28px;
    }

    .wrapper > div:first-child.mobile-show .main-nav-item span,
    .wrapper > div:first-child.mobile-show .nav_link span {
        font-size: 10px;
    }

    /* Hide sign out and dev environment notice in mobile menu */
    .wrapper > div:first-child.mobile-show .main-nav > form,
    .wrapper > div:first-child.mobile-show .main-nav > a.nav_link,
    .wrapper > div:first-child.mobile-show .main-nav > div[style*="color: red"] {
        display: none;
    }

    #content {
        padding: 10px;
        margin-top: 60px;
    }

    #top-nav {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #CDD7DD;
        z-index: 1001;
        padding: 10px;
    }

    #main-content > div:first-child {
        min-width: 100% !important;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .app-header {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .app-header img {
        max-width: 150px;
    }

    .rounded-card-settings {
        margin-bottom: 15px;
    }

    .col-md-4 {
        margin-bottom: 15px;
    }

    /* Table responsive */
    .table-responsive {
        overflow-x: auto;
    }

    /* Form fields */
    .portal-form-row label {
        text-align: left !important;
        margin-bottom: 5px;
    }
}

/* Profile page button styling */
.btn-danger {
    background-color: #d80404;
    border-color: #d80404;
}

.btn-danger:hover {
    background-color: #b50303;
    border-color: #b50303;
}

@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}

/* Form group styling for profile */
.form-group .mockup-label {
    display: block;
    margin-bottom: 5px;
}

.form-group .mockup-input,
.form-group .mockup-select {
    text-align: left;
}

/* Table responsive fixes */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .table-responsive {
        border: 1px solid #dee2e6;
        border-radius: 4px;
    }

    .table-responsive .table th,
    .table-responsive .table td {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Card expiring soon styles */
.card-expiring-item {
    transition: box-shadow 0.2s ease;
}

.card-expiring-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 576px) {
    .card-expiring-item .d-flex {
        flex-wrap: wrap;
    }

    .card-expiring-item .text-right {
        width: 100%;
        text-align: left !important;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
}
/* ================================
   Dashboard Stats Cards - Modern
   ================================ */
.dashboard-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stats-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.stats-card-header {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-card-header.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.stats-card-header.success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
}

.stats-card-header.warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #333;
}

.stats-card-body {
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 10px 5px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-value.primary { color: #007bff; }
.stat-value.success { color: #28a745; }
.stat-value.warning { color: #d39e00; }

.stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Simple stats row (for Registrar/DVA with fewer items) */
.stats-row-simple {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-card-simple {
    flex: 1;
    min-width: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    border-top: 4px solid;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.stat-card-simple.primary { border-top-color: #007bff; }
.stat-card-simple.success { border-top-color: #28a745; }
.stat-card-simple.warning { border-top-color: #ffc107; }

.stat-card-simple .stat-value {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card-simple .stat-label {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .dashboard-stats {
        flex-direction: column;
    }
    
    .stats-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-card-simple .stat-value {
        font-size: 32px;
    }
}

/* ================================
   Dashboard Sections - Modern
   ================================ */
.dashboard-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.dashboard-section-header {
    background: #f8f9fa;
    padding: 18px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-section-title i {
    color: #666;
}

.dashboard-section-badge {
    background: #007bff;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.dashboard-section-body {
    padding: 20px 24px;
    width: 100%;
    flex: 1;
    min-width: 0;
}

/* Collapse toggle styling */
.dashboard-section-header[data-toggle="collapse"] {
    cursor: pointer;
    transition: background-color 0.2s;
}

.dashboard-section-header[data-toggle="collapse"]:hover {
    background: #f0f2f4;
}

.dashboard-section-header .collapse-icon {
    transition: transform 0.3s;
    color: #666;
}

.dashboard-section-header.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

/* ================================
   Dashboard Filters - Modern
   ================================ */
.dashboard-filters {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown .btn {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    min-width: 180px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-dropdown .btn:hover {
    border-color: #adb5bd;
}

.filter-dropdown .btn:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.filter-dropdown .btn::after {
    margin-left: 10px;
}

.filter-dropdown .dropdown-menu {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 100%;
}

.filter-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    transition: background-color 0.15s;
}

.filter-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

.filter-dropdown .dropdown-item.active,
.filter-dropdown .dropdown-item.dropdown-menu-selected {
    background-color: #e7f1ff;
    color: #007bff;
    font-weight: 500;
}

.filter-dropdown .dropdown-divider {
    margin: 4px 0;
}

/* ================================
   Dashboard Tables - Modern
   ================================ */
.dashboard-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Make dashboard section body scrollable when containing tables */
.dashboard-section-body.p-0 {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Section body with tables - remove padding for edge-to-edge tables */
.dashboard-section > .dashboard-section-body:has(.dashboard-table-wrapper) {
    padding: 0;
}

.dashboard-section-body .dashboard-table,
.dashboard-section-body .dashboard-table-wrapper {
    width: 100%;
}

.dashboard-section-body .dashboard-table-footer {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.dashboard-section-body.p-0 .dashboard-table,
.dashboard-section-body.p-0 .dashboard-table-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.dashboard-section-body.p-0 .dashboard-table-footer {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Table wrapper for horizontal scrolling */
.dashboard-table-wrapper {
    overflow-x: auto;
}

/* Round table header corners when table is directly in section body with p-0 */
.dashboard-section-body.p-0 > .dashboard-table thead th:first-child,
.dashboard-section-body.p-0 > .dashboard-table-wrapper .dashboard-table thead th:first-child {
    border-top-left-radius: 0;
}

.dashboard-section-body.p-0 > .dashboard-table thead th:last-child,
.dashboard-section-body.p-0 > .dashboard-table-wrapper .dashboard-table thead th:last-child {
    border-top-right-radius: 0;
}

.dashboard-table {
    width: 100%;
    min-width: max-content;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: auto;
}

.dashboard-table thead th {
    background: #f8f9fa;
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    border-bottom: 2px solid #e9ecef;
    white-space: nowrap;
}

.dashboard-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f2f4;
    color: #333;
    vertical-align: middle;
}

.dashboard-table tbody tr {
    transition: all 0.15s ease;
}

.dashboard-table tbody tr:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dashboard-table tbody tr:hover td:first-child {
    box-shadow: inset 3px 0 0 #007bff;
}

/* Grouped row hover - for tables where one logical row spans multiple tr elements */
.dashboard-table tbody tr[data-row-group] {
    transition: background-color 0.15s ease;
}

.dashboard-table tbody tr[data-row-group] td {
    border-bottom: none;
}

.dashboard-table tbody tr[data-row-group].row-group-last td {
    border-bottom: 1px solid #e9ecef;
}

.dashboard-table tbody tr[data-row-group]:hover,
.dashboard-table tbody tr[data-row-group]:hover td:first-child {
    background-color: transparent !important;
    box-shadow: none !important;
}

.dashboard-table tbody tr[data-row-group].row-group-hover,
.dashboard-table tbody tr[data-row-group].row-group-hover:hover {
    background-color: #f8f9fa !important;
}

.dashboard-table tbody tr[data-row-group].row-group-hover td:first-child {
    box-shadow: inset 3px 0 0 #007bff !important;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-table .alert-text {
    color: #dc3545;
    font-weight: 500;
}

/* Table action buttons */
.table-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f0f2f4;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.table-action-btn:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
}

.table-action-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.table-action-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Table pagination */
.dashboard-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
    margin-top: 10px;
}

.dashboard-table-footer .record-count {
    font-size: 13px;
    color: #666;
}

.dashboard-table-footer .pagination {
    margin: 0;
}

.dashboard-table-footer .pagination .page-link {
    border-radius: 6px;
    margin: 0 3px;
    padding: 8px 14px;
    font-size: 13px;
    border: 1px solid #dee2e6;
    color: #333;
}

.dashboard-table-footer .pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.dashboard-table-footer .pagination .page-link:hover {
    background-color: #f8f9fa;
}

.dashboard-table-footer .show-all-link a {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
}

.dashboard-table-footer .show-all-link a:hover {
    text-decoration: underline;
}

/* Compact table variant */
.dashboard-table.dashboard-table-compact th,
.dashboard-table.dashboard-table-compact td {
    padding: 10px 8px;
    font-size: 13px;
}

.dashboard-table.dashboard-table-compact {
    min-width: 100%;
}

/* Sticky action columns - always visible on the right */
.dashboard-table th.sticky-col,
.dashboard-table td.sticky-col {
    position: sticky;
    right: 0;
    background: white;
}

.dashboard-table th.sticky-col:first-of-type,
.dashboard-table td.sticky-col:first-of-type {
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.05);
}

.dashboard-table thead th.sticky-col {
    background: #f8f9fa;
    z-index: 2;
}

.dashboard-table tbody tr:hover td.sticky-col {
    background: #f8f9fa;
}

/* When there are two sticky columns, offset the first one */
.dashboard-table th.sticky-col-2,
.dashboard-table td.sticky-col-2 {
    right: 70px;
}

/* Link button style */
.btn-hub-link {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
}

.btn-hub-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Hub tabs */
.hub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 12px;
}

.hub-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.hub-tab:hover {
    color: #333;
    background: white;
    text-decoration: none;
}

.hub-tab.active {
    background: white;
    color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Empty state */
.dashboard-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.dashboard-empty-state i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 15px;
}

.dashboard-empty-state p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-section-header {
        padding: 14px 16px;
    }

    .dashboard-section-body {
        padding: 16px;
    }

    .dashboard-filters {
        flex-direction: column;
        gap: 15px;
        padding: 16px;
    }

    .filter-dropdown .btn {
        min-width: 100%;
    }

    .dashboard-table thead th,
    .dashboard-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .dashboard-table-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 16px;
    }

}

/* Ensure collapse content fills width */
.dashboard-section .collapse {
    width: 100%;
}

.dashboard-section .collapse.show {
    width: 100%;
}

/* ============================================
   Citizen View Page Styles
   ============================================ */

/* Citizen Info Cards (Contact Info, Cards section) */
.citizen-info-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
}

.citizen-info-card-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
}

.citizen-info-card-header i {
    margin-right: 8px;
}

.citizen-info-card-body {
    padding: 16px;
}

/* Compact table for citizen view */
.dashboard-table-compact {
    font-size: 13px;
}

.dashboard-table-compact th,
.dashboard-table-compact td {
    padding: 10px 12px;
}

/* Card items for citizenship cards display */
.card-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 12px;
}

.card-item:last-of-type {
    margin-bottom: 0;
}

.card-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-item-actions {
    display: flex;
    gap: 6px;
}

.card-item-actions .btn {
    padding: 4px 10px;
    font-size: 11px;
}

.card-item-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.card-actions-footer {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.card-actions-footer .btn {
    flex: 1;
}

/* Section header button styling */
.dashboard-section-header .btn {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 500;
}

.dashboard-section-header .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.dashboard-section-header .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.dashboard-section-header .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.dashboard-section-header .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* QR Code container for 2FA */
.qr-code-container svg {
    max-width: 100%;
    height: auto;
}

/* Table action buttons */
.dashboard-table .btn-outline-primary,
.dashboard-table .btn-outline-warning,
.dashboard-table .btn-outline-danger {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.dashboard-table .btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.dashboard-table .btn-outline-warning:hover {
    background-color: #ffc107;
    color: #212529;
}

.dashboard-table .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

/* ============================================
   Citizen Page Header Styles
   ============================================ */

/* Page Header */
.citizen-page-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.citizen-page-logo {
    height: 28px;
    width: auto;
    margin-right: 12px;
}

.citizen-page-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Summary Card */
.citizen-summary-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.citizen-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 16px 20px;
    color: #fff;
}

.citizen-summary-name {
    font-size: 18px;
    font-weight: 600;
}

.citizen-summary-name i {
    margin-right: 10px;
}

.citizen-summary-id {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
}

.citizen-summary-body {
    padding: 20px;
}

.citizen-summary-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.citizen-summary-item:last-child {
    margin-bottom: 0;
}

.citizen-summary-label {
    font-size: 13px;
    color: #666;
    min-width: 120px;
    font-weight: 500;
}

.citizen-summary-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-deceased {
    background-color: #f8d7da;
    color: #721c24;
}

.status-action {
    background-color: #cce5ff;
    color: #004085;
}

.status-warning {
    background-color: #fff3cd;
    color: #856404;
}

/* Navigation Tabs Container */
.citizen-nav-container {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 5px;
    position: relative;
}

.citizen-nav-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.citizen-nav-scroll::-webkit-scrollbar {
    display: none;
}

.citizen-nav-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 5px;
}

.citizen-nav-arrow:hover {
    background: #e9ecef;
    color: #333;
}

.citizen-nav-tabs {
    background: transparent;
    border-radius: 0;
    padding: 5px 10px;
    box-shadow: none;
    border: none !important;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0;
}

.citizen-nav-tabs .nav-item {
    margin: 3px;
    flex-shrink: 0;
}

.citizen-nav-tabs .nav-link {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    border: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.citizen-nav-tabs .nav-link i {
    margin-right: 6px;
}

.citizen-nav-tabs .nav-link:hover {
    background-color: #f8f9fa;
    color: #333;
}

.citizen-nav-tabs .nav-link.active {
    background-color: #007bff !important;
    color: #fff !important;
}

/* ============================================
   Citizen Photo Styles
   ============================================ */

.citizen-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.citizen-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
}

.citizen-photo-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.citizen-photo-placeholder i {
    font-size: 60px;
    color: #adb5bd;
}

/* ============================================
   Citizen Field Styles
   ============================================ */

.citizen-field-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.citizen-field-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    border-bottom: 2px solid #e9ecef;
    min-height: 36px;
}

/* ============================================
   Address Block Styles
   ============================================ */

.address-block {
    padding: 10px 0;
}

.address-line {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
}

.address-postal {
    font-weight: 600;
    color: #007bff;
    margin-top: 10px;
}

/* ============================================
   Extra Small Button
   ============================================ */

.btn-xs {
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 4px;
}

/* ============================================
   Hub Button System - Modern Consistent Buttons
   ============================================ */

/* Base button styles */
.btn-hub-primary,
.btn-hub-secondary,
.btn-hub-danger,
.btn-hub-success,
.btn-hub-outline-primary,
.btn-hub-outline-secondary,
.btn-hub-outline-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-hub-primary:focus,
.btn-hub-secondary:focus,
.btn-hub-danger:focus,
.btn-hub-success:focus,
.btn-hub-outline-primary:focus,
.btn-hub-outline-secondary:focus,
.btn-hub-outline-danger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 80, 223, 0.2);
}

/* Primary Button - Blue */
.btn-hub-primary {
    background-color: #2050df;
    border-color: #2050df;
    color: #fff;
}

.btn-hub-primary:hover {
    background-color: #1a40b3;
    border-color: #1a40b3;
    color: #fff;
    text-decoration: none;
}

.btn-hub-primary:active {
    background-color: #15348f;
    border-color: #15348f;
}

/* Secondary Button - Gray */
.btn-hub-secondary {
    background-color: #f8f9fa;
    border-color: #cdd7dd;
    color: #495057;
}

.btn-hub-secondary:hover {
    background-color: #e9ecef;
    border-color: #b3c4ce;
    color: #333;
    text-decoration: none;
}

.btn-hub-secondary:active {
    background-color: #dee2e6;
    border-color: #a0b3c0;
}

/* Danger Button - Red */
.btn-hub-danger {
    background-color: #d80404;
    border-color: #d80404;
    color: #fff;
}

.btn-hub-danger:hover {
    background-color: #b50303;
    border-color: #b50303;
    color: #fff;
    text-decoration: none;
}

.btn-hub-danger:active {
    background-color: #920202;
    border-color: #920202;
}

/* Success Button - Green */
.btn-hub-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.btn-hub-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff;
    text-decoration: none;
}

.btn-hub-success:active {
    background-color: #1c7430;
    border-color: #196b2c;
}

/* Outline Primary Button */
.btn-hub-outline-primary {
    background-color: transparent;
    border-color: #2050df;
    color: #2050df;
}

.btn-hub-outline-primary:hover {
    background-color: rgba(32, 80, 223, 0.1);
    border-color: #2050df;
    color: #1a40b3;
    text-decoration: none;
}

.btn-hub-outline-primary:active {
    background-color: rgba(32, 80, 223, 0.2);
}

/* Outline Secondary Button */
.btn-hub-outline-secondary {
    background-color: transparent;
    border-color: #b3c4ce;
    color: #6c757d;
}

.btn-hub-outline-secondary:hover {
    background-color: rgba(179, 196, 206, 0.2);
    border-color: #8fa3af;
    color: #495057;
    text-decoration: none;
}

.btn-hub-outline-secondary:active {
    background-color: rgba(179, 196, 206, 0.3);
}

/* Outline Danger Button */
.btn-hub-outline-danger {
    background-color: transparent;
    border-color: #d80404;
    color: #d80404;
}

.btn-hub-outline-danger:hover {
    background-color: rgba(216, 4, 4, 0.1);
    border-color: #d80404;
    color: #b50303;
    text-decoration: none;
}

.btn-hub-outline-danger:active {
    background-color: rgba(216, 4, 4, 0.2);
}

/* Button Sizes */
.btn-hub-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.btn-hub-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* Button with icon */
.btn-hub-primary i,
.btn-hub-secondary i,
.btn-hub-danger i,
.btn-hub-success i,
.btn-hub-outline-primary i,
.btn-hub-outline-secondary i,
.btn-hub-outline-danger i {
    margin-right: 8px;
}

/* Disabled state */
.btn-hub-primary:disabled,
.btn-hub-secondary:disabled,
.btn-hub-danger:disabled,
.btn-hub-success:disabled,
.btn-hub-outline-primary:disabled,
.btn-hub-outline-secondary:disabled,
.btn-hub-outline-danger:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Gap utility for button groups */
.gap-2 {
    gap: 8px;
}

/* Action buttons for tables (view, edit, delete) */
.btn-action {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    margin: 0 2px;
    font-size: 14px;
}

.btn-action-view,
.btn-action-edit {
    background-color: #f0f0f0;
    color: #666;
}

.btn-action-view:hover,
.btn-action-edit:hover {
    background-color: #e0e0e0;
    color: #333;
}

.btn-action-delete {
    background-color: #fee2e2;
    color: #dc3545;
}

.btn-action-delete:hover {
    background-color: #fecaca;
    color: #b91c1c;
}

.btn-action-save {
    background-color: #d1fae5;
    color: #059669;
}

.btn-action-save:hover {
    background-color: #a7f3d0;
    color: #047857;
}

/* Tooltip styling for action buttons */
.btn-action[title] {
    position: relative;
}

/* Select2 styling to match form-control */
.select2-container--default .select2-selection--single {
    height: 44px !important;
    min-height: 44px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
    padding: 9px 12px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5 !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
    color: #495057 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    right: 8px !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #80bdff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}
