@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Common icon definitions */
:root {
    --icon-chevron: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23545554" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    --icon-search: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17" fill="none"><path d="M15.677 16.385L9.415 10.123C8.915 10.549 8.34 10.8787 7.69 11.112C7.04 11.3453 6.38667 11.462 5.73 11.462C4.12867 11.462 2.77333 10.9077 1.664 9.799C0.554667 8.69034 0 7.33534 0 5.734C0 4.13267 0.554 2.777 1.662 1.667C2.77 0.557002 4.12467 0.00133573 5.726 2.39808e-06C7.32733 -0.00133094 8.68333 0.553336 9.794 1.664C10.9047 2.77467 11.46 4.13034 11.46 5.731C11.46 6.42567 11.337 7.098 11.091 7.748C10.845 8.398 10.5217 8.954 10.121 9.416L16.383 15.677L15.677 16.385ZM5.731 10.461C7.05767 10.461 8.17767 10.0043 9.091 9.091C10.0043 8.17767 10.461 7.05734 10.461 5.73C10.461 4.40267 10.0043 3.28267 9.091 2.37C8.17767 1.45734 7.05767 1.00067 5.731 1C4.40433 0.999336 3.284 1.456 2.37 2.37C1.456 3.284 0.999333 4.404 1 5.73C1.00067 7.056 1.45733 8.176 2.37 9.09C3.28267 10.004 4.40267 10.4607 5.73 10.46" fill="%23545554"/></svg>');
    --icon-calendar: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="%239CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

/* Icon utility classes */
.input-search {
    --trailing-icon: var(--icon-search);
}

.input-dropdown {
    --trailing-icon: var(--icon-chevron);
}

.input-calendar {
    --trailing-icon: var(--icon-calendar);
}

/* Page Layout */
* {
    margin: 0;
    padding: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #00A192;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00877a;
    /* Slightly darker shade for hover */
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #00A192 transparent;
}

form#webForm {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ensure the form takes up at least the viewport height */
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden;
}

body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.aside {
    position: fixed;
    width: 240px;
    height: calc(100% - 48px);
    border-radius: 16px;
    background: #00A192;
    margin: 24px 0 24px 24px;
    padding-bottom: 32px !important;
    font-family: 'Open Sans', sans-serif !important;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
}

.aside.sidebar-shrunk {
    width: 128px;
    /* padding: 32px 16px 16px 16px; */
}

.aside.sidebar-shrunk .sidebar-logo {
    width: 64px;
    height: auto;
    object-fit: contain;
}

.aside.sidebar-shrunk .menu>li>a>span,
.aside.sidebar-shrunk .profile-wrapper,
.aside.sidebar-shrunk .profile-info-wrapper,
.aside.sidebar-shrunk .logOutButton>span {
    display: none !important;
}

.aside.sidebar-shrunk .upper-menu {
    display: flex !important;
    /* justify-content: center !important; */
    align-items: center !important;
}

.aside.sidebar-shrunk .menu>li>a>svg {
    margin-right: 0 !important;
}

.aside.sidebar-shrunk .menu>li>a,
.aside.sidebar-shrunk .liLogout,
.aside.sidebar-shrunk .logOutButton {
    display: flex !important;
    justify-content: center;
    align-items: center !important;
    padding: 16px 0 !important;
}

.aside.sidebar-shrunk .liLogout {
    height: auto !important;
    background: transparent !important;
    padding: 16px 0 !important;
    /* Make it blend in shrunk mode */
    cursor: pointer;
}

.aside.sidebar-shrunk .profile-wrapper {
    justify-content: center;
    align-items: center;
}

.aside.sidebar-shrunk .logOutButton {
    width: 56px !important;
    min-width: 56px !important;
    height: 40px !important;
    background: #FFF !important;
    cursor: pointer !important;
    /* White button in shrunk mode */
    /* pointer-events: none; */
    /* Disable hover/clicks in shrunk mode as requested */
}

.aside.sidebar-shrunk .logOutButton>svg {
    stroke: #00A192 !important;
    /* Sidebar color icon */
}

/* Ensure hover doesn't turn the icon white in shrunk mode */
.aside.sidebar-shrunk .liLogout:hover>.logOutButton>svg,
.aside.sidebar-shrunk .liLogout:hover>.logOutButton>svg path {
    stroke: #00A192 !important;
}

.aside.sidebar-shrunk .submenu,
.aside.sidebar-shrunk .menu>li:hover>.submenu,
.aside.sidebar-shrunk .dropdown-arrow {
    display: none !important;
}

/* Fix reduced height in shrunk mode */
.aside.sidebar-shrunk .upper-menu {
    margin-bottom: 90px;
}

.aside .sidebar-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95px;
    height: 91px;
}

.aside ul {
    text-align: center;
    margin-top: 51px;
    width: 100%;
}

.aside.sidebar-shrunk+.wrapper .content {
    margin-left: 210px;
    /* shrunk 128 + margin-left 24 + button 24 + gap 40 */
    /* width: auto; */
}

.footer {
    width: 100%;
    background: #24303B;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;
}

/* Menu */
.upper-menu {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 155px;
    /* Space for the fixed logout button */

    /* Scrollbar Styling relative to the green background */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.upper-menu::-webkit-scrollbar {
    width: 6px;
}

.upper-menu::-webkit-scrollbar-track {
    background: transparent;
}

.upper-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.upper-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

.upper-menu::-webkit-scrollbar-button {
    height: 0;
    width: 0
}

.collapseButton,
.shrink-out,
.shrink-in {
    position: absolute;
    top: 52px;
    right: 0;
    display: flex;
    width: 24px;
    padding: 15px 3px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px 0 0 8px;
    background: #FFF;
    /* Initial white bg */
    cursor: pointer;
    z-index: 10;
}

.shrink-in {
    right: -24px;
    border-radius: 0 8px 8px 0;
    background: #00A192;
    /* Green bg when collapsed */
}

.collapseButton>svg path,
.shrink-out>svg path {
    fill: #00A192 !important;
    /* Green icon for white bg */
}

.shrink-in>svg path {
    fill: #FFF !important;
    /* White icon for green bg */
}

.aside.sidebar-shrunk .shrink-out {
    display: none !important;
}

.aside:not(.sidebar-shrunk) .shrink-in {
    display: none !important;
}

.collapseButton>svg,
.shrink-out>svg,
.shrink-in>svg {
    width: 6px;
    height: 10px;
    flex-shrink: 0;
    aspect-ratio: 3/5;
}

.menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 0 16px !important;

}

.upper-menu>li {
    height: auto !important;
    background-color: transparent !important;
    margin-bottom: 8px;
    color: white;
    width: 100%;
    border-radius: 32px !important;
    transition: background-color 0.2s ease;
}

.upper-menu>li>a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    width: 100%;
    height: 56px;
    padding: 0 17px 0 24px !important;
    border-radius: 32px !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}


/* Dashboard button should keep rounded corners on hover since it has no submenu */
.menu>li:has(.dashboardButton):hover,
.menu>li.is-active:has(.dashboardButton) {
    border-radius: 32px;
}

.menu>li.is-active {
    border-radius: 32px;
    background: #FFF !important;
    color: #00A192 !important;
}

.aside.sidebar-shrunk .menu>li {
    width: 72px !important;
    height: 56px !important;
}

.aside.sidebar-shrunk .menu>li.is-active {
    width: 72px !important;
    height: 56px !important;
}


.menu>li>a:hover {
    text-decoration: none !important;
}

.menu>li>a>svg {
    height: 24px !important;
    width: 24px !important;
    stroke: white !important;
}

.menu>li.is-active>a>svg {
    stroke: #00A192 !important;
}

.menu>li.is-active>a>svg path {
    stroke: #00A192 !important;
}

.menu>li>a>span {
    color: #FFF;

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.menu>li.is-active>a>span {
    color: #00A192 !important;
}


.liLogout {
    background-color: white !important;
    z-index: 999;
    margin-top: 20px !important;
}




.liLogout {
    height: 139px !important;
    border-radius: 16px;
    background: #FDFDFD !important;
    margin-bottom: 0 !important;
    padding: 16px;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto !important;
    overflow: hidden;
    /* Added overflow hidden to contain background SVGs */
    display: flex;
    /* Centering content horizontally */
    flex-direction: column;
    align-items: center;
}



.liLogout:hover {
    border-radius: 16px !important;
}

.liLogout>.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}




.liLogout>.profile-wrapper>.profile-image-wrapper>img {
    width: 43px !important;
    height: 43px !important;
    border-radius: 43px !important;
    max-width: none;
    border: 3px solid #A9CFC8;
}



.liLogout>.profile-wrapper>.profile-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}



.liLogout>.profile-wrapper>.profile-info-wrapper>span.profile-name {
    color: var(--Secondary-Text, #000);

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}



.liLogout>.profile-wrapper>.profile-info-wrapper>span.profile-role {
    color: var(--Secondary-Text, #000);

    /* Lable */
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
}



.liLogout>.logOutButton {
    margin-top: 16px;
    display: flex;
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 32px;
    background: var(--Primary-Color, #00A192);
    height: 40px;
    width: 108px;
    min-width: 108px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer !important;
}

.liLogout>.logOutButton:hover {
    cursor: pointer !important;
}


.liLogout>.logOutButton>span {
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}



.liLogout>.logOutButton>svg {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    stroke: white;
    flex-shrink: 0;
    stroke-width: 2px;
}



.liLogout:hover>.logOutButton>svg,
.liLogout:hover>.logOutButton>svg path {
    stroke: white !important;
}

.liLogout:hover>.logOutButton>span {
    color: white !important;
}



.logout-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto !important;
    z-index: 1;
    cursor: pointer;
}

.logout-bg-wrapper svg:first-child {
    width: 90px;
    height: 103px;
    position: absolute;
    top: 0;
    right: 0;
}

.logout-bg-wrapper svg:last-child {
    width: 90px;
    height: 103px;
    position: absolute;
    bottom: 0;
}





.wrapper {
    display: flex;
    flex: 1;
    background-color: #fff;
    overflow-y: scroll;
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Webkit */
    -webkit-scrollbar: none;
}

#maininfo {
    padding-top: 110px;
}

.content {
    /* aside 240 + margin-left 24 + some gap */
    margin: 24px 32px 24px 296px;
    flex: 1;
    /* Allow to fill wrapper, but strictly respect boundaries */
    min-width: 0;
    /* Critical flex property to force overflow inside children instead of expanding the parent */
    /* min-height: 867px; */
    height: auto;
    transition: margin-left 0.3s ease;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.60);
    padding-top: 24px;
    position: fixed;
    top: 0;
    left: 294px;
    right: 20px;
    background: white;
    z-index: 10;
    transition: left 0.3s ease;
}

.aside.sidebar-shrunk+.wrapper .page-header {
    left: 200px;
}

.page-header.dashboard-mode {
    align-items: center;
    padding-bottom: 7px;
}

.page-header.dashboard-mode .welcome-text>span:first-child {
    color: var(--Schemes-On-Surface, #1D1B20);
    font-family: Barlow;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.page-header.dashboard-mode .welcome-text>span:last-child {
    color: var(--Primary-Color, #00A192);
    font-family: Barlow;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.container {
    width: 100%;
    height: auto;
    /* max-height: 867px; */
    /* background-color: white; */
    /* overflow-y: scroll; */
    scrollbar-width: none;
    border: 1px solid rgba(22, 22, 22, 0.40);
    margin-top: var(--margin-top, 32px);
    border-radius: 16px;
    padding: 32px;
}

.card1 {
    width: 100%;
    height: auto;
    background-color: white;
    border: 1px solid rgba(22, 22, 22, 0.40);
    border-radius: 16px;
    padding: 16px 24px;
}

.card1:hover {
    background-color: #00A192;
    border: 1px solid rgba(22, 22, 22, 0.40);
    cursor: pointer;
}

.card1:hover .h1,
.card1:hover .h2,
.card1:hover .h3,
.card1:hover .h4,
.card1:hover .h5,
.card1:hover .h6,
.card1:hover .body-small,
.card1:hover .body-medium {
    color: white !important;
}

.card1:hover .outlined-button {
    border-radius: 32px;
    border: 1px solid var(--Primary-Color, #00A192);
    background: var(--Secondary-Text, #000);
}

.card1:hover a.outlined-button,
.card1:hover .outlined-button p {
    color: white !important;
}

.card2 {
    width: 280px;
    height: 208px;
    border-radius: 8px;
    border: 1px solid var(--Primary-Color, #00A192);
    background: #FFF;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.card2 svg {
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
    stroke: var(--Primary-Color, #00A192);
    flex-shrink: 0;
    stroke-width: 2px;
}

.card2 .card-title,
.card2 .card-title * {
    color: var(--Secondary-Text, #000) !important;
    text-align: center;

    /* H6 – Tiny Heading */
    font-family: Barlow !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    /* 150% */
}

.card2 .card-body,
.card2 .card-body * {
    color: var(--Primary-Color, #00A192);
    text-align: center;

    /* Body Small */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}


.h1 {
    color: var(--Primary-Color, #49454F);

    /* H1 - Large Headline */
    font-family: Barlow;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 116.667% */
}

.h2 {
    color: var(--Accent-1-950, #545554);

    /* H2 - Section Headline */
    font-family: Barlow;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    /* 122.222% */
}

.h3 {
    color: var(--Secondary-Text, #000);

    /* H3 - Subsection Headline */
    font-family: Barlow;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    /* 128.571% */
}

.h4 {
    color: var(--Schemes-On-Surface-Variant, #49454F);

    /* H4 - Small Heading */
    font-family: Barlow;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

.h5 {
    color: var(--Accent-1-950, #545554);

    /* H5 – Minor Heading */
    font-family: Barlow;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
}

.h6 {
    color: var(--Secondary-Text, #000);

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.body-small {
    color: var(--Schemes-On-Surface, #1D1B20);

    /* Body Small */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.body-medium {
    color: var(--Secondary-Text, #000);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

a.outlined-button,
a.outlined-button:visited,
a.outlined-button:active,
a.outlined-button:focus,
.outlined-button,
.outlined-button:visited,
.outlined-button:active,
.outlined-button:focus {
    display: inline-flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    border: 1px solid var(--Primary-Color, #00A192);
    color: var(--Primary-Color, #00A192) !important;
    text-decoration: none !important;
    cursor: pointer;

    /* Body Small */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

a.outlined-button:hover,
.outlined-button:hover {
    text-decoration: none !important;
    background-color: rgba(0, 161, 146, 0.05);
    color: var(--Primary-Color, #00A192) !important;
}

.outlined-button p {
    color: var(--Primary-Color, #00A192);
    margin: 0;
    /* Body Small */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

a.outlined-button:hover p {
    color: var(--Primary-Color, #00A192) !important;
}

a.primary-button,
a.primary-button:visited,
a.primary-button:active,
a.primary-button:focus,
.primary-button,
.primary-button:visited,
.primary-button:active,
.primary-button:focus {
    display: flex;
    height: 40px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    background: var(--Primary-Color, #00A192);
    width: max-content;
    color: white !important;
    text-decoration: none !important;
}

.primary-button p {
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}

.primary-button svg {
    stroke-width: 2px;
    stroke: #FFF;
    width: 18px;
    height: 18px;
}

a.primary-button:hover,
.primary-button:hover {
    background: #02b8a5;
    cursor: pointer;
    text-decoration: none !important;
    color: white !important;
}

.rounded-icon-container {
    display: flex;
    width: 30.454px;
    height: 30.454px;
    padding: 4.153px 4.301px 4.301px 4.153px;
    justify-content: center;
    align-items: center;
    border-radius: 11.074px;
    background: #FFF;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

.table-head,
.table-head th {
    background-color: transparent !important;
    border: none !important;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.40) !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 0px !important;
    text-align: left !important;

    color: var(--Secondary-Text, #000);
    font-family: Barlow;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */

    vertical-align: top !important;
}

.table-body,
.table-body td {
    background-color: transparent !important;
    border: none !important;
    padding: 16px 12px 24px 12px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.40) !important;
    vertical-align: top !important;
    text-align: left !important;
}

.table-body>tr {
    background-color: transparent !important;
}

.td {
    color: var(--Accent-1-950, #47544E);
    background-color: transparent !important;

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.td a:not(.primary-button):not(.outlined-button):not(.text-primary-button),
.td-primary a:not(.primary-button):not(.outlined-button):not(.text-primary-button),
.td-primary {
    color: var(--Primary-Color, #00A192) !important;

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.td a:not(.primary-button):not(.outlined-button):not(.text-primary-button):hover,
.td-primary a:not(.primary-button):not(.outlined-button):not(.text-primary-button):hover,
.td-primary:hover {
    color: var(--Primary-Color, #00A192) !important;
}

.td a,
.td span,
.td-primary a,
.td-primary span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
}

.td-primary i,
.td-primary svg {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
    flex-shrink: 0;
}

.td i,
.td svg {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
    flex-shrink: 0;
}

.details-table {
    background-color: transparent !important;
    width: auto !important;
}

.details-table-body {
    background-color: transparent !important;
    border: none !important;
    text-align: left !important;
    width: max-content !important;
}

.details-table-body tr {
    background-color: transparent !important;
    text-align: left !important;
}

.details-table-th {
    width: max-content !important;
    text-align: left !important;

    color: var(--Secondary-Text, #000);

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.details-table-td {
    width: max-content !important;
    text-align: left !important;

    color: var(--Secondary-Text, #000);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

a.csv-download-button,
.csv-download-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Primary-Color, #00A192) !important;
    text-decoration: underline !important;
}

a.csv-download-button:hover,
.csv-download-button:hover {
    color: var(--Primary-Color, #00A192) !important;
}

.csv-download-button h6 {
    color: var(--Primary-Color, #00A192) !important;
    text-decoration: underline !important;
}

.csv-download-button svg {
    stroke-width: 1px;
    /* stroke: var(--Primary-Color, #00A192) !important; */
    width: 20px !important;
    height: 20px !important;
}

.text-primary-button,
.text-primary-button:visited,
.text-primary-button:active,
.text-primary-button:focus {
    display: var(--flex, flex);
    align-items: var(--align-items, center);
    gap: var(--gap, 8px);
    color: var(--color, #00A192) !important;
    text-decoration: var(--underline, none) !important;
    font-family: Barlow !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.text-primary-button h6 {
    color: var(--color, #00A192) !important;
    text-decoration: var(--underline, none) !important;
    font-family: Barlow !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.text-primary-button svg {
    stroke-width: 1px;
    stroke: var(--color, #00A192) !important;
    width: 24px;
    height: 24px;
}

.text-primary-button:hover {
    color: var(--color, #00A192) !important;
}

/* Dropdown Button Styles (Global Component) */
.dropdown-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-button-selected {
    display: flex;
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(22, 22, 22, 0.40);
    outline: none;
    background: #FFF;
    min-width: 60px;
    min-height: 40px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.dropdown-button-selected:hover {
    border-color: var(--Primary-Color, #00A192);
}

.dropdown-button-selected span {
    color: var(--Secondary-Text, #000);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.dropdown-button-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #FFF;
    border: 1px solid rgba(22, 22, 22, 0.40);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-button-options.show {
    display: block;
}

.dropdown-button-option {
    padding: 8px 12px;
    color: var(--Secondary-Text, #000);
    font-family: Roboto;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.dropdown-button-option:hover {
    background: #F5F5F5;
    color: var(--Primary-Color, #00A192);
}

.dropdown-select-hidden {
    display: none !important;
}

.dropdown-button-selected svg {
    flex-shrink: 0;
    pointer-events: none;
    height: 14px;
    width: 14px;
}

.input {
    display: flex;
    padding: 16px 18px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    height: var(--height, 48px);
    box-shadow: none !important;

    border-radius: 8px;
    border: 1px solid rgba(22, 22, 22, 0.40);
    outline: none;
    background: #FFF;
    /* Dynamic trailing icon support */
    background-image: var(--trailing-icon, none);
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    background-size: 20px;
    width: var(--width, auto) !important;
    field-sizing: initial;

    color: var(--Accent-1-950, #000000);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.textarea {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    height: var(--height, 80px);
    box-shadow: none !important;
    border-radius: 8px;
    border: 1px solid rgba(22, 22, 22, 0.40);
    outline: none;
    background: #FFF;
    width: var(--width, auto) !important;
    field-sizing: initial;
    color: var(--Accent-1-950, #000000);
    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* Increased right padding if an icon is used on a text box */
input.input.input-search,
input.input.input-calendar,
input.input.input-chevron {
    padding-right: 40px !important;
}

select.input,
select.input-custom {
    display: block !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 48px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 40px !important;

    /* Use dynamic icon system */
    --trailing-icon: var(--icon-chevron) !important;
    background-image: var(--trailing-icon) !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
}

.input-label-body-medium {
    color: var(--Accent-1-950, #47544E);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.input-label-h6 {
    color: var(--Accent-1-950, #47544E);

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}


.input>svg {
    width: 24px;
    height: 24px;
}

.input-group-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group-row {
    display: flex;
    align-items: center;

    gap: 8px;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    width: 350px;
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
}


.radio-button-list {
    background: transparent !important;
    border: none !important;
    border-collapse: collapse;
}

.radio-button-list table,
.radio-button-list tbody {
    width: 100% !important;
    background-color: transparent !important;
    border: none !important;
}

.radio-button-list tr,
.radio-button-list td {
    background: transparent !important;
    border: none !important;
    padding: 4px 0 !important;
}

.radio-button-list input[type="radio"] {
    accent-color: var(--Primary-Color, #00A192);
    width: 20px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 !important;
}

.radio-button-list label {
    margin-left: 12px !important;
    vertical-align: middle;
    cursor: pointer;
    font-family: Roboto;
    font-size: 16px;
    color: var(--Secondary-Text, #47544E);
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Checkbox List Styles (similar to radio-button-list) */
.checkbox-list {
    background: transparent !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-list>div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-list>div>div {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-list input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--Primary-Color, #00A192);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-list label {
    cursor: pointer;
    font-family: Roboto;
    font-size: 16px;
    color: var(--Accent-1-950, #47544E);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    transition: color 0.2s ease;
}

.checkbox-list label:hover {
    color: var(--Primary-Color, #00A192);
}

/* Checkbox */
.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--Primary-Color, #00A192);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.checkbox label {
    cursor: pointer;
    color: var(--Secondary-Text, #000);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin: 0;
    transition: color 0.2s ease;
}

.checkbox label:hover {
    color: var(--Primary-Color, #00A192);
}

/* Radio Button */
.radio {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--Primary-Color, #00A192);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.radio label {
    cursor: pointer;
    color: var(--Secondary-Text, #000);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    transition: color 0.2s ease;
}

.radio label:hover {
    color: var(--Primary-Color, #00A192);
}

/* Language Selection List (Figma Style) */
.language-radio-list {
    width: 100%;
    max-width: 220px;
    border-collapse: collapse;
    border: none !important;
}

.language-radio-list table {
    width: 100% !important;
    border-collapse: collapse;
    background: transparent !important;
    border: none !important;
}

.language-radio-list tbody {
    background: transparent !important;
    border: none !important;
}

.language-radio-list tr {
    background: transparent !important;
    border: none !important;
}

.language-radio-list td {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between !important;
    padding: 20px 16px !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
}

.language-radio-list label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: Barlow;
    font-size: 18px;
    font-weight: 600;
    color: var(--Accent-1-950, black);
    margin: 0 !important;
    flex-grow: 1;
}

.language-radio-list label img {
    width: 40px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-radio-list input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #00A192;
    border-radius: 50% !important;
    background-color: #fff !important;
    cursor: pointer;
    position: relative;
    margin: 0 !important;
    flex-shrink: 0;
}

.language-radio-list input[type="radio"]:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #00A192;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.language-radio-list tr:hover {
    background-color: #F8FAF9 !important;
}

/* Radio Button List Card Styles (for vehicle types) */
.radio-button-list-card {
    margin: 0px;
    padding-left: 0px;
    vertical-align: middle;
    display: flex;
    gap: 16px;
    border: none !important;
}

.radio-button-list-card table,
.radio-button-list-card tbody {
    width: 100% !important;
    background-color: transparent !important;
    border: none !important;
}

.radio-button-list-card tr,
.radio-button-list-card td {
    background: transparent !important;
    border: none !important;
}

.radio-button-list-card input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
    vertical-align: middle;
}

.radio-button-list-card label {
    display: flex;
    width: 255px;
    padding: 32px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: #FFF;

    color: var(--Accent-1-950, #545554);

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.radio-button-list-card label svg {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    stroke: black;
    transition: all 0.2s ease;
}

.radio-button-list-card label:hover {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: var(--Primary-Color, #00A192);
    color: white;
}

.radio-button-list-card label:hover svg {
    stroke: white !important;
}

.radio-button-list-card input[type="radio"]:focus+label {
    border: 2px solid var(--Primary-Color, #00A192);
    outline: none;
}

.radio-button-list-card input[type="radio"]:checked+label {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: var(--Primary-Color, #00A192);
    color: #FFF;
    font-weight: 500;
}

.radio-button-list-card input[type="radio"]:checked+label svg {
    stroke: #FFF;
}

/* Checkbox Card Item Styling (Matches .radio-button-list-card) */
.checkbox-card-item {
    /* display: inline-flex; */
    /* vertical-align: middle; */
}

.checkbox-card-item input[type="checkbox"] {
    opacity: 0;
    position: fixed;
    width: 0;
    vertical-align: middle;
}

.checkbox-card-item label {
    /* display: block; */
    width: var(--width, max-content);
    height: 48px;
    padding: 12px 20px;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(22, 22, 22, 0.40);
    background: #FFF;
    color: var(--Accent-1-950, #545554);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-card-item label svg {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    stroke: black;
    transition: all 0.2s ease;
}

.checkbox-card-item label:hover {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: var(--Primary-Color, #00A192);
    color: white;
}

.checkbox-card-item label:hover svg {
    stroke: white !important;
}

.checkbox-card-item input[type="checkbox"]:focus+label {
    border: 2px solid var(--Primary-Color, #00A192);
    outline: none;
}

.checkbox-card-item input[type="checkbox"]:checked+label {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: var(--Primary-Color, #00A192);
    color: #FFF;
    font-weight: 500;
}

.checkbox-card-item input[type="checkbox"]:checked+label svg {
    stroke: #FFF;
}

/* Custom Scrollbar Hide Utility */
.tw-scrollbar-hide {
    -ms-overflow-style: none !important;
    /* IE and Edge */
    scrollbar-width: none !important;
    /* Firefox */
}

.tw-scrollbar-hide::-webkit-scrollbar {
    display: none !important;
}

/* Load Definition Card */
.load-def-card {
    width: 100%;
    background-color: #FFF;
    border: 1px solid rgba(22, 22, 22, 0.40);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
}

/* Journey */
.journey-item {
    display: flex;
    padding: 14px 0;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-bottom: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
}

.journey-item h6:first-child {
    min-width: 90px;
    flex-shrink: 0;
}

.journey-item h6 {
    color: var(--Secondary-Text, #000);
    font-family: Barlow;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 155.556% */
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-star {
    color: #F59E0B;
    font-size: 20px;
}

.journey-none {
    margin-top: 16px;
    color: #9CA3AF;
}

/* Time slot Styles */
.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: max-content;
    height: 48px;
    padding: 12px 20px;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(22, 22, 22, 0.40);
    outline: none;
    background: #FFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-selected {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40)) !important;
    background: var(--Primary-Color, #00A192) !important;
    color: white !important;
}

.time-slot label {
    color: var(--Accent-1-950, #545554);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 24px; */
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: var(--Primary-Color, #00A192);
    color: white;
}

.time-slot:hover label,
.time-slot-selected label {
    color: white !important;
}

/* Time slot Styles */
.delivery-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: max-content;
    height: 48px;
    padding: 12px 20px;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(22, 22, 22, 0.40);
    outline: none;
    background: #FFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-slot-selected {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40)) !important;
    background: var(--Primary-Color, #00A192) !important;
    color: white !important;
}

.delivery-slot label {
    color: var(--Accent-1-950, #545554);

    /* Body Medium */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 24px; */
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-slot:hover {
    border-radius: 12px;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40));
    background: var(--Primary-Color, #00A192);
    color: white;
}

.delivery-slot:hover label,
.delivery-slot-selected label {
    color: white !important;
}

/* Loading State Styles */
.loading-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(0, 161, 146, 0.05);
    border: 1px solid var(--Primary-Color, #00A192);
    margin-top: 16px;

    color: var(--Primary-Color, #00A192) !important;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.loading-message::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid var(--Primary-Color, #00A192);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Message Styles */
.error-message {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: var(--padding, 12px 16px);
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid #EF4444;
    margin-top: var(--margin-top, 16px);

    color: #DC2626;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.error-message>span,
.error-message>a {
    grid-column: 2;
    display: block;
}

.error-message>a {
    color: var(--Primary-Color, #00A192) !important;
}

.error-message::before {
    content: "⚠";
    font-size: 16px;
    line-height: 20px;
    grid-column: 1;
    grid-row: 1;
}

.error-message:empty {
    display: none;
}

.error-text-message {
    color: #EF4444;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.error-text-message::before {
    content: "⚠ ";
    font-size: 16px;
    line-height: 20px;
    grid-column: 1;
    grid-row: 1;
}

.error-text-message:empty {
    display: none;
}

/* ========================================
   File Upload Component Styles
   ======================================== */

.file-upload-container {
    width: 100%;
    max-width: 800px;
}

.file-upload-dropzone {
    border: 2px dashed var(--Primary-Color, #CBD0DC);
    border-radius: 8px;
    background-color: #FFFFFF;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-dropzone:hover {
    border-color: #008A7D;
    background-color: #F0FFFE;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.file-upload-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
}

.file-upload-instruction {
    color: var(--Accent-1-950, #545554);
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}

.file-upload-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #F5F5F5;
    border-radius: 8px;
    margin-top: 12px;
    width: 100%;
}

.file-upload-filename {
    flex: 1;
    color: var(--Accent-1-950, #545554);
    font-family: Barlow;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.file-upload-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.file-upload-browse-btn {
    /* display: inline-flex; */
    width: 270px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid var(--Gray-200, rgba(22, 22, 22, 0.40));
    background: var(--White, #FFF);
    color: var(--Accent-1-950, #545554);
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.file-upload-browse-btn:hover {
    background-color: #F9FAFB;
    border-color: var(--Primary-Color, #00A192);
    color: var(--Primary-Color, #00A192);
}

.file-upload-browse-btn:active {
    transform: scale(0.98);
}



/* Numeric Pager Button - page number buttons */
a.numeric-pager-btn,
.numeric-pager-btn {
    display: inline-flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--Primary-Color, #00A192);
    color: var(--Primary-Color, #00A192) !important;
    text-decoration: none !important;
    cursor: pointer;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

a.numeric-pager-btn:hover,
.numeric-pager-btn:hover {
    background-color: rgba(0, 161, 146, 0.05);
}

/* Numeric Pager Button Active - current page */
.numeric-pager-btn-active {
    display: inline-flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--Primary-Color, #00A192);
    background-color: var(--Primary-Color, #00A192);
    color: #FFFFFF !important;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}


/* Old codes */
a.dashboardButton {
    text-decoration: none !important;
}

.customsMenu {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0px !important;
    display: inline-block !important;
    position: relative;
}

.customsMenu:hover .customsSwap {
    display: inline !important;
}

.customsMenu>img {
    margin-bottom: 0px !important;
}

.customsSwap {
    padding-left: 15px;
    padding-right: 15px;
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

a.logOutButton {
    text-decoration: none !important;
}

.submenu {
    background-color: #D7E7E4 !important;
    margin: 0px !important;
    display: none;
    position: relative !important;
    /* Force accordion flow */
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    padding: 10px 26.5px 12px 26.5px !important;
    align-items: flex-start;
    align-self: stretch;
    list-style: none;
    border-bottom-left-radius: 32px !important;
    border-bottom-right-radius: 32px !important;
    border: none !important;
    box-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    float: none !important;
    text-align: left !important;
}

.menu>li:hover>.submenu {
    display: flex !important;
    flex-direction: column;
}


.submenu li {
    position: relative;
    width: 100%;
    background-color: transparent !important;
    z-index: 0;
    padding: 8px 0 2px 0 !important;
}

.submenu>li {
    background-color: transparent !important;
}

.submenu li a {
    color: #625B71 !important;
    background-color: transparent !important;
    font-family: Barlow !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
    position: relative !important;
}

.submenu li>a:hover,
.submenu li.active-sub>a {
    color: #00A192 !important;
    font-family: Barlow !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    text-transform: uppercase !important;
}

/* Suppress active-sub highlight when hovering a different submenu item */
.submenu:has(li > a:hover)>li.active-sub:not(:hover)>a {
    color: #625B71 !important;
    font-weight: 600 !important;
}

.submenu:has(li > a:hover)>li.active-sub:not(:hover)>a::after {
    display: none !important;
}

/* Bottom bar width = text width (::after on <a>, not <li>) */
.submenu li>a:hover::after,
.submenu li.active-sub>a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #6C6B6B;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Dropdown Arrow Rotation */
.menu>li:hover .dropdown-arrow {
    transform: rotate(90deg);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: auto;
}

/* Ensure icons in menu are centered and consistent */
.menu>li>a>svg:not(.dropdown-arrow),
.menu>li>a>i {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.is-dropdown-submenu {
    background: #D7E7E4 !important;
    /* Let parent background show through */
    border: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    /* Override Foundation default */
    align-self: stretch;
    z-index: 0 !important;
    margin: 0 !important;
    padding: 10px 26.5px 12px 26.5px !important;
}

.is-dropdown-submenu>li {
    position: relative;
    padding: 8px 0 2px 0;
}

.is-dropdown-submenu>li>a,
.is-dropdown-submenu>li>a.newPageButton {
    color: var(--Schemes-Secondary, #625B71) !important;
    font-family: Barlow;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background: transparent;
}

.is-dropdown-submenu>li>a:hover,
.is-dropdown-submenu>li>a.newPageButton:hover {
    color: var(--Primary-Color, #00A192) !important;
    font-family: Barlow;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

/* Bottom bar width = text width (::after on <a>, not <li>) */
.is-dropdown-submenu>li>a:hover::after,
.is-dropdown-submenu>li>a.newPageButton:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #6C6B6B;
    position: absolute;
    left: 0;
    bottom: 0;
}

a.newPageButton {
    line-height: inherit;
    color: #222E3A !important;
    cursor: pointer;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    font-family: Barlow !important;
}

/* Layout Help */
.inLineClass {
    display: inline !important;
}

.left {
    float: left;
}

.textRight td {
    text-align: right;
}

.gapLeft {
    padding-left: 50px;
}

.marginSmall {
    margin-left: 60px;
}

.userChoicesLeft {
    background: inherit;
    border: 0px !important;
    width: 200px;
    float: left;
    vertical-align: top;
}

.userChoicesRight {
    width: 400px;
    float: left;
    vertical-align: top;
}

/* Divs */
.contentRow {
    /* width: 100vw; */
    /* max-width: 75rem; */
    margin-right: auto;
    margin-left: auto;
    /* background-color: #008000; */
}

.marginDiv {
    margin: .93rem .93rem .93rem .93rem;
}

.inputDiv {
    border-width: 0px !important;
    margin: 1px 0 1px 0;
    padding: .93rem .93rem .93rem .93rem;
    border-radius: 10px;
    width: 100%;
}

.inputDivFlex {
    border-width: 0px !important;
    margin: 1px 0 1px 0;
    border-radius: 10px;
    width: 100%;
    display: flex;
}

.inputDivHalf {
    border-width: 0px !important;
    margin: 1px 0 1px 0;
    padding: .46rem .46rem .46rem .46rem;
    border-radius: 10px;
    width: 50%;
}

.inputDivHalfFlex {
    border-width: 0px !important;
    margin: 1px 0 1px 0;
    padding: .46rem .46rem .46rem .46rem;
    border-radius: 10px;
    width: 50%;
    display: flex;
}

.divBox {
    background-color: #e2e2e2;
    border-radius: 30px;
    background-clip: content-box;
}

.entrytabsmall {
    max-width: 380px;
    clear: left;
    /*  font-size: 12px;*/
}

.entrytabsmall>div {
    max-width: 380px;
    clear: left;
    padding-left: 5px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    /* equal height of the children */
    padding-top: 5px;
}

.entrytabsmall>div>label {
    width: 120px;
    padding: 0px 10px 0 0;
    float: left;
    display: block;
    text-align: right;
}

.entrytabsmall>div>label.c4InputLabelBoxSmall {
    font-size: .83rem !important;
    padding-top: 2px;
}

.entrytabmedium {
    max-width: 650px;
    clear: left;
    /*  font-size: 12px;*/
    width: 100%;
}

.entrytabmedium>div {
    max-width: 650px;
    clear: left;
    padding-left: 5px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    /* equal height of the children */
    padding-top: 5px;
    align-items: center;
}


.entrytabmedium>div>label {
    float: left;
    display: block;
    width: 200px;
    padding: 0px 20px 0 0;
    text-align: right;
    font-size: 100%;
}

.entrytabmedium>div>label.c4InputLabelBoxVerySmall {
    font-size: .83rem !important;
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 20px !important;
}

.entrytabmedium>div>label.c4InputLabelBoxSmall {
    font-size: .83rem !important;
    padding-top: 2px;
}

.entrytabmedium>div>span {
    width: 100%;
    line-height: 1.5;
}

.entrytablarge {
    max-width: 950px;
    clear: left;
    /*  font-size: 12px;*/
}

.entrytablarge>div {
    max-width: 950px;
    clear: left;
    padding-left: 5px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    /* equal height of the children */
    padding-top: 5px;
    align-items: center;
}

.entrytablarge>div>label {
    float: left;
    display: block;
    width: 300px;
    padding: 0px 30px 0 0;
    text-align: right;
    font-size: 100% !important;
}

.entrytablarge>div>label.c4InputLabelBoxSmall {
    font-size: .83rem !important;
    padding-top: 2px;
}


.entrytablarge2col:after {
    content: "";
    display: table;
    clear: both;
}

.entrytablarge1of2col {
    float: left;
    width: 100px;
}

.entrytablarge1of2col145 {
    float: left;
    width: 145px;
}

.entrytablarge1of2col150 {
    float: left;
    width: 150px;
}

.entrytablarge1of2col200 {
    float: left;
    width: 150px;
}

.entrytablarge2of2col {
    float: left;
}

.entrytabsmallnopadding {
    max-width: 380px;
    clear: left;
    /*  font-size: 12px;*/
}

.entrytabsmallnopadding>div {
    max-width: 380px;
    clear: left;
    padding-left: 5px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    /* equal height of the children */
}

.entrytabsmallnopadding>div>label {
    float: left;
    display: block;
    width: 120px;
    padding: 0px 10px 0 0;
    text-align: right;
    font-size: 100% !important;
}

.entrytabsmallnopadding>div>span {
    line-height: 1.5;
    width: 100%;
}

.entrytabsmallnopadding>label {
    font-size: 100% !important;
}


.colSmall {
    width: 60px;
}

.colMedium {
    width: 125px;
}

.colQuiteLarge {
    width: 175px;
}

.colLarge {
    width: 200px;
}

.col100 {
    width: 100%;
}

.smallertab {
    max-width: 280px;
    clear: left;
    /*  font-size: 12px;*/
}

.smalltab {
    max-width: 400px;
    clear: left;
    /*  font-size: 12px;*/
}

.quitesmalltab {
    max-width: 550px;
    clear: left;
    /*  font-size: 12px;*/
}

.mediumtab {
    max-width: 670px;
    clear: left;
    /*  font-size: 12px;*/
}

.largetab {
    /* max-width: 970px; */
    clear: left;
}

.vlargetab {
    max-width: 1300px;
    clear: left;
    /*  font-size: 12px;*/
}

.vvlargetab {
    max-width: 1800px;
    clear: left;
    /*  font-size: 12px;*/
}

.C4CustDropdown {
    float: right;
    vertical-align: middle;
}

.C4Border {
    border-style: dashed;
    border-color: black;
    border-width: 1px;
}

/* Tables */

.stdheader {
    border-top-color: #f0ecec !important;
    border-top-style: none !important;
}

.stdheader>th {
    color: #222E3A;
    font-size: 15px;
}

.stdheader>th:first-child {
    border-top-left-radius: 10px;
}

.stdheader>th:last-child {
    border-top-right-radius: 10px;
}

.noTopLine {
    border-top-color: #f0ecec !important;
    border-top-style: none !important;
}

.clsOuterTable td {
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

table.clsOuterTable>tbody {
    background-color: transparent !important;
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-right-style: none;
}

table.clsOuterTable>tbody>tr {
    background-color: transparent !important;
}


.clsNormalTable table tr td {
    /*   font-size: 1rem !important;*/
    font-size: 14px !important;
    color: black;
    font-weight: normal;
}

.datagrid table {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}

.datagrid table thead,
.datagrid table tbody,
.datagrid table tfoot {
    border: none;
}

.datagrid table thead th:first-child {
    border-top-left-radius: 10px;
}

.datagrid table thead th:last-child {
    border-top-right-radius: 10px;
}

.datagrid table td,
.datagrid table th {
    padding: 3px 10px;
}

.datagrid table tbody tr {
    background-color: #f8f8f8;
    border: solid;
    border-width: 1px 0 0 0;
}

.datagrid table tbody tr>.grouper {
    background-color: lightgray !important;
    color: black !important;
    border-width: 1px !important;
    border-style: dashed !important;
    border-color: black !important;
}

.datagrid table tbody td {
    font-size: 14px;
    font-weight: bold;
    color: #222E3A;
    padding: 6px 10px;
}

.datagrid table tbody tr:nth-child(2n) {
    border-bottom: 0;
    background-color: #f4f4f4;
}

.datagrid table tbody tr:nth-child(2n)>td.stditem {
    background-color: #f8f8f8;
}

.datagrid table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.datagrid table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.datagrid2 table thead th {
    background-color: grey !important;
    color: black !important;
    text-align: left !important;
}

.datagrid2 table tbody tr {
    background-color: lightgray !important;
}

.datagrid2 table tbody td {
    color: black !important;
    font-weight: normal !important;
}

.datagrid2 table tbody tr:nth-child(2n) {
    background-color: white !important;
    color: black !important;
}


.datagrid2 table tbody tr.PinkBackground {
    background-color: #F5D5D3 !important;
}

.datagrid2 table tbody tr.PinkBackground:nth-child(2n) {
    background-color: #FFDFDD !important;
}

.plainTableNoPadding>tbody>tr>td {
    padding-left: 0px;
    padding-right: 1px;
}

.plainTableNoPaddingTB>tbody>tr>td {
    padding-top: 0px;
    padding-bottom: 1px;
}

.plainTable {
    background-color: inherit !important;
    border-width: 0px;
    margin-bottom: 0px;
}

.plainTable>tbody {
    background-color: inherit !important;
    border-width: 0px;
}

.plainTable>tbody>tr {
    background-color: inherit !important;
    border-width: 0px;
    border-top-color: #f0ecec !important;
    border-top-style: none !important;
}

.roundedTopTR td:first-child {
    border-top-left-radius: 10px;
}

.roundedTopTR td:last-child {
    border-top-right-radius: 10px;
}

.roundedBottomTR td:first-child {
    border-bottom-left-radius: 10px;
}

.roundedBottomTR td:last-child {
    border-bottom-right-radius: 10px;
}

.roundedTop {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.roundedBottom {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.alignedTable tr {
    border-top-color: #f0ecec !important;
    border-top-style: none !important;
}

.alignedTable tr td {
    padding-left: 0px !important;
    border-left: 0px !important;
    padding-right: 0px !important;
    border-right: 0px !important;
}

.smallerTable tr td {
    border-bottom: 0px !important;
    border-top: 0px !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

.greyTable {
    background-color: #e2e2e2;
    padding: 6px 10px;
}

/* Checkboxes Boxes */

.smallCheckBox>input[type="checkbox"] {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.FullyCompactCheckBox>input {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.CompactCheckBox>input {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.plainButtonList {
    background-color: inherit;
}

.plainButtonList tr {
    background-color: inherit !important;
}

.plainButtonList tbody {
    background-color: inherit !important;
    border-bottom-style: none;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
}

.plainButtonList>tbody>tr>td>span>input[type="radio"] {}

.plainButtonList>tbody>tr>td>span>input[type="radio"]+label {
    font-size: 13.28px !important;
}



/* Input Boxes */
/*.loginTextBox {
    width: 400px;
    border-radius: 10px;
}*/

.smallestInput {
    max-width: 47px !important;
    border-radius: 10px;
}

.smallerInput {
    max-width: 60px !important;
    border-radius: 10px;
}

.smallInput {
    max-width: 100px !important;
    border-radius: 10px;
}

.aboveSmallInput {
    max-width: 110px !important;
    border-radius: 10px;
}

.mediumInput {
    max-width: 150px !important;
    border-radius: 10px;
}

.mediumInputSettings {
    max-width: 170px !important;
    border-radius: 10px;
}

.aboveMediumInput {
    max-width: 220px !important;
    border-radius: 10px;
}

.largeInput {
    max-width: 280px !important;
    border-radius: 10px;
}

.aboveLargeInput {
    max-width: 350px !important;
    border-radius: 10px;
}

.largerInput {
    max-width: 450px !important;
}


.xSmallInputBox {
    font-size: .75rem;
    height: 25px;
    margin-top: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: black;
    font-weight: normal;
    background-color: #cacaca;
    border-color: black;
    border-radius: 10px;
}

.smallInputBox {
    font-size: .75rem;
    height: 25px;
    margin-top: 2px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: black;
    font-weight: normal;
    background-color: #e2e2e2;
    border-color: black;
    border-radius: 10px;
}

.verySmallFilterInputBox {
    font-size: .75rem;
    height: 20px;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    color: black;
    font-weight: normal;
    border-radius: 10px;
}

.smallFilterInputBox {
    font-size: .75rem;
    height: 25px;
    margin-top: 2px;
    padding-top: 1px;
    padding-bottom: 1px;
    color: black;
    font-weight: normal;
    border-radius: 10px;
}

.inputmediumfixedsize {
    width: 180px;
    min-width: 180px;
}

.inputlargerfixedsize {
    width: 280px;
    min-width: 280px;
}

.inputlargefixedsize {
    width: 380px;
    min-width: 380px;
}

.ui-autocomplete {
    position: absolute !important;
    z-index: 1050 !important;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: visible;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #00A192 transparent;
}

/* Override .ui-widget-content background:none for the autocomplete dropdown */
.ui-autocomplete.ui-widget-content {
    background: #FFF !important;
    border: 1px solid #EDEDED !important;
}

.ui-autocomplete::-webkit-scrollbar {
    width: 4px;
}

.ui-autocomplete::-webkit-scrollbar-track {
    background: transparent;
}

.ui-autocomplete::-webkit-scrollbar-thumb {
    background: #00A192;
    border-radius: 10px;
}

.ui-autocomplete>li {
    display: flex;
    align-items: center;
    padding: 0px 16px;
    height: 36px;
    font-family: Roboto;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: var(--Secondary-Text, #000);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
}

.ui-autocomplete>li:hover,
.ui-autocomplete>li.ui-state-focus {
    background: #F5F5F5 !important;
}

.ui-autocomplete>li>a,
.ui-autocomplete>li>.ui-menu-item-wrapper {
    color: var(--Secondary-Text, #000) !important;
    text-decoration: none !important;
    font-family: Roboto;
    font-size: 12px !important;
    font-weight: 400 !important;
    display: block;
    padding: 0;
    border: none !important;
    background: transparent !important;
}

.ui-autocomplete>li:hover>a,
.ui-autocomplete>li.ui-state-focus>a,
.ui-autocomplete>li:hover>.ui-menu-item-wrapper,
.ui-autocomplete>li.ui-state-focus>.ui-menu-item-wrapper {
    color: var(--Secondary-Text, #000) !important;
    background: transparent !important;
}

.ui-helper-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.newPageLB {
    border-radius: 10px;
}

/* Calendar */
.datePickerClass {
    border-radius: 10px;
}

.datePickerExtraWidth {
    width: 150px !important;
}

/* jQuery UI Widget Reset - strip default theme backgrounds/borders */
.ui-widget {
    font-family: Roboto, sans-serif !important;
}

.ui-widget-content {
    border: none !important;
    background: none !important;
    color: #121212 !important;
}

.ui-widget-header {
    border: none !important;
    background: none !important;
    color: #121212 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: none !important;
    background: transparent !important;
    color: var(--Light-Grayscale-Text-Subtitle, #7E727C) !important;
    font-weight: 400 !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover {
    border: none !important;
    background: #ededed !important;
    color: #22b9be !important;
    font-weight: 400 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: none !important;
    background: var(--Primary-Color, #00A192) !important;
    color: #fff !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid black !important;
    background: transparent !important;
    color: black !important;
}

/* Calendar Styles */
.ui-datepicker {
    border-radius: 8px !important;
    background: #fff !important;
    font-family: Roboto !important;
    font-size: 12.624px !important;
    font-weight: 500 !important;
    color: #121212 !important;
    width: 0 !important;
    /* Collapse width by default */
    padding: 0 !important;
    /* No padding by default */
    display: none;
}

.ui-datepicker[style*="display: block"] {
    border: 0.902px solid rgba(22, 22, 22, 0.40) !important;
    width: 270px !important;
    padding: 16px 16px 0 16px !important;
    display: block;
}

.ui-datepicker-header {
    align-items: center !important;
    background: transparent !important;
    border: none !important;
}

.ui-datepicker-title {
    text-align: center !important;
    font-size: 12.624px !important;
    font-family: Roboto !important;
    font-weight: 500 !important;
}

.ui-datepicker-inline {
    border: none !important;
}

.ui-datepicker-calendar {
    margin-top: 8px !important;
}

.ui-datepicker-calendar thead,
.ui-datepicker-calendar tbody,
.ui-datepicker-calendar tr {
    background: transparent !important;
    border: none !important;
}

.ui-datepicker-calendar th {
    color: #23283b !important;
    font-size: 10.82px !important;
    padding: 6px 0 !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
}

.ui-datepicker-calendar td {
    padding: 2px !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
}

.ui-datepicker-calendar td a,
.ui-datepicker-calendar td a.ui-state-default {
    color: var(--Light-Grayscale-Text-Subtitle, #7E727C) !important;
    border-radius: 4px !important;
    font-size: 12.624px !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    font-weight: 400 !important;
    height: 28.854px !important;
    padding: 7.214px !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;
}

.ui-datepicker-calendar td.ui-datepicker-today a,
.ui-datepicker-calendar td.ui-datepicker-today a.ui-state-default {
    border: 1px solid black !important;
    color: black !important;
    background: none !important;
}

.ui-datepicker-calendar td a.ui-state-active {
    background: var(--Primary-Color, #00A192) !important;
    color: #fff !important;
    font-weight: 400 !important;
    border: none !important;
}

.ui-datepicker-calendar td a:hover,
.ui-datepicker-calendar td a.ui-state-hover {
    background: #ededed !important;
    color: #22b9be !important;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    width: 0px !important;
    height: 0px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ui-datepicker-prev:before,
.ui-datepicker-next:before {
    content: '' !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    position: absolute !important;
    top: 8px !important;
}

/* Left Arrow SVG */
.ui-datepicker-prev:before {
    left: 8px !important;
    top: 18px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none"><path d="M6.38704 9.61803L10.6701 13.8259C10.9706 14.1265 11.4215 14.1265 11.722 13.8259C12.0226 13.5254 12.0226 13.0745 11.722 12.774L8.04014 9.01691L11.722 5.25986C12.0226 4.9593 12.0226 4.50845 11.722 4.20789C11.5718 4.05761 11.4215 3.98247 11.1961 3.98247C10.9706 3.98247 10.8204 4.05761 10.6701 4.20789L6.38704 8.41578C6.08648 8.79148 6.08648 9.24233 6.38704 9.61803C6.38704 9.54289 6.38704 9.54289 6.38704 9.61803Z" fill="%2323283b"/></svg>') !important;
}

/* Right Arrow SVG */
.ui-datepicker-next:before {
    right: 8px !important;
    top: 18px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none"><path d="M11.6769 8.48341L7.42393 4.23795C7.35408 4.16752 7.27097 4.11162 7.17941 4.07347C7.08784 4.03532 6.98963 4.01568 6.89043 4.01568C6.79124 4.01568 6.69302 4.03532 6.60146 4.07347C6.50989 4.11162 6.42678 4.16752 6.35693 4.23795C6.21698 4.37873 6.13843 4.56918 6.13843 4.76769C6.13843 4.9662 6.21698 5.15665 6.35693 5.29743L10.0764 9.05448L6.35693 12.774C6.21698 12.9147 6.13843 13.1052 6.13843 13.3037C6.13843 13.5022 6.21698 13.6927 6.35693 13.8334C6.42652 13.9044 6.50951 13.9609 6.60109 13.9996C6.69267 14.0383 6.79102 14.0584 6.89043 14.0589C6.98985 14.0584 7.0882 14.0383 7.17977 13.9996C7.27135 13.9609 7.35434 13.9044 7.42393 13.8334L11.6769 9.58798C11.7532 9.51761 11.814 9.43221 11.8557 9.33716C11.8973 9.24211 11.9188 9.13946 11.9188 9.03569C11.9188 8.93192 11.8973 8.82927 11.8557 8.73422C11.814 8.63917 11.7532 8.55377 11.6769 8.48341Z" fill="%2323283b"/></svg>') !important;
}

/* Hide built-in UI icon spans */
.ui-datepicker-prev .ui-icon,
.ui-datepicker-next .ui-icon {
    display: none !important;
}

/* Modern Calendar Redesign (Figma Match) - Scoped */
/* Main Container */
.modern-datepicker.ui-datepicker,
.modern-datepicker.ui-widget.ui-widget-content {
    background: #FFF !important;
    border: 1px solid var(--Accent-2-Color, rgba(22, 22, 22, 0.40)) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    width: 100% !important;
    max-width: 600px !important;
    box-shadow: none !important;
    font-family: 'Roboto', sans-serif !important;
}

/* Header (Includes Prev, Next, and Title) */
.modern-datepicker .ui-datepicker-header,
.modern-datepicker.ui-widget-header {
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 0 24px 0 !important;
    position: relative !important;
}

/* Navigation Buttons (Prev/Next) */
.modern-datepicker .ui-datepicker-prev,
.modern-datepicker .ui-datepicker-next,
.modern-datepicker .ui-datepicker-prev-hover,
.modern-datepicker .ui-datepicker-next-hover {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #00A192 !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.modern-datepicker .ui-datepicker-prev {
    order: 1 !important;
    margin-right: 16px !important;
}

.modern-datepicker .ui-datepicker-next {
    order: 2 !important;
}

/* Icons (Hidden as we use text) */
.modern-datepicker .ui-datepicker-prev span,
.modern-datepicker .ui-datepicker-next span {
    display: none !important;
    /* Hide default icons */
}

/* Text Content for Prev/Next */
.modern-datepicker .ui-datepicker-prev::before {
    content: "Prev" !important;
}

.modern-datepicker .ui-datepicker-next::before {
    content: "Next" !important;
}

/* Month and Year Pill */
.modern-datepicker .ui-datepicker-title {
    order: 3 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    border: 1.5px solid #00A192 !important;
    border-radius: 32px !important;
    color: #00A192 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

/* Main Calendar Table */
.modern-datepicker .ui-datepicker-calendar {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}

/* Weekday Names Header */
.modern-datepicker .ui-datepicker-calendar thead th {
    width: 14.28% !important;
    padding: 12px 0 !important;
    color: #00A192 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(22, 22, 22, 0.40) !important;
    background: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Calendar Days */
.modern-datepicker .ui-datepicker-calendar tbody td {
    width: 14.28% !important;
    padding: 8px 0 !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
}

/* Day Numbers */
.modern-datepicker .ui-datepicker-calendar td a,
.modern-datepicker .ui-datepicker-calendar td span,
.modern-datepicker .ui-state-default {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
    color: #47544E !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Day Hover State */
.modern-datepicker .ui-datepicker-calendar td a.ui-state-hover {
    background: #F4F7F6 !important;
    color: #00A192 !important;
}

/* Today's Date Highlight */
.modern-datepicker .ui-datepicker-today a,
.modern-datepicker .ui-datepicker-today span {
    border: 1px solid #00A192 !important;
    color: #00A192 !important;
}

/* Selected Date Style */
.modern-datepicker td.ui-datepicker-current-day a,
.modern-datepicker .ui-state-active {
    background: #00A192 !important;
    color: #FFFFFF !important;
    border-color: #00A192 !important;
}

/* Disabled (Unselectable) Dates */
.modern-datepicker .ui-datepicker-unselectable span,
.modern-datepicker .ui-state-disabled span {
    color: #D1D5D2 !important;
    cursor: default !important;
    background: transparent !important;
    opacity: 1 !important;
}

/* Hide other month days if needed, or style them */
.modern-datepicker .ui-datepicker-other-month span,
.modern-datepicker .ui-datepicker-other-month a {
    color: #E2E2E2 !important;
}

/* Labels */
.c4InputLabel {
    color: #222E3A;
}

.c4InputLabelBox {
    line-height: 2.5;
    font-size: 1rem;
    color: #222E3A;
}

.c4InputLabelBoxSmall {
    font-size: .83rem;
    padding-top: 2px;
}

.c4InputLabelOnBlack {
    font-size: 14px;
    font-weight: bold;
}

.c4ErrorMessage {
    color: #E72D2B;
    font-size: 20px;
}

.forgotLable {
    color: #002418;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 308px;
}

.c4InstrNormal {
    color: black;
    font-weight: normal;
}

.c4MandReminderVSmall {
    color: #E72D2B !important;
    padding-top: 0px;
    padding-left: 0px;
}

.c4MandReminderSmall {
    color: #E72D2B !important;
    padding-top: 0px;
    padding-left: 5px;
    line-height: 20px;
}

.c4MandReminderDummy {
    color: transparent !important;
    padding-top: 5px;
    padding-left: 5px;
    font-weight: bold !important;
}

.c4MandReminder {
    color: #E72D2B !important;
    padding-top: 5px;
    padding-left: 5px;
    font-weight: bold !important;
}

.c4ErrorMessageOnBlack {
    color: #E72D2B !important;
    font-size: 20px;
    font-weight: bold !important;
}

.c4SubHeader {
    padding-bottom: 10px;
    font-size: 20px;
}



/* Buttons */
.button.primary {
    border-radius: 10px;
    background: #0000FF !important;
    color: #FFFFFF !important;
}

.button.primary:hover {
    color: white !important;
    background: #24303B !important;
}

.smallButton {
    margin-bottom: 2px;
    margin-top: 2px;
    padding-top: 5px;
    padding-bottom: 2px;
    height: 25px !important;
}

.shortestButton {
    height: 20px;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
    border-radius: 5px !important;
}

.btnn {
    height: 20px;
    padding-bottom: 1px !important;
    padding-top: 1px !important;
}

a.aspNetDisabled {
    opacity: 0.25;
    cursor: not-allowed;
}


/* Background on Customer Portal */
#imageBGTopRight {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px !important;
    mix-blend-mode: multiply;
    object-fit: cover;
    object-position: top;
}

#imageBGBottomLeft {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 100px;
    border-radius: 0px !important;
    mix-blend-mode: multiply;
}

/* Customer Portal KPI Icons */
.big-icon .fa {
    font-size: 5em !important;
}

.bgHover {
    color: black;
    border-radius: 10px;
}

.bgHover:hover {
    background-color: black !important;
    color: white;
    border-radius: 10px;
}

h6.value-sub {
    font-size: 12px;
}

.value-sub {
    line-height: 20px;
    margin-top: 19px;
    margin-left: 4px;
}

.stats-row {
    margin: 10px 0px 20px 0px;
}

/* Links */
a {
    line-height: inherit;
    color: var(--Primary-Color, #00A192) !important;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold !important;
    font-size: 14px !important;
}

a:hover,
a:focus {
    color: #003399 !important;
    /* royalBlue */
    transition: 0.2s;
    text-decoration: underline;
}

a img {
    border: 0;
}


/* Colours */
.amber {
    color: #FFBF00 !important;
}

.red {
    color: #E72D2B !important;
}

.lightBlue {
    color: #61CBEA !important;
}

.blue {
    color: #0000FF !important;
}

.royalBlue {
    color: #003399 !important;
}

.yellow {
    color: #f8ec08 !important;
}

.green {
    color: #008000 !important;
}

.purple {
    color: #7F00FF !important;
}

.orange {
    color: #f6a600 !important;
}

.grey {
    color: #4C4A4A !important;
}

.dark {
    color: #24303B !important;
    /* darkGrey */
}

.largeInputForce {
    /* not really sure why this is needed but the box size is wrong without it*/
    width: 280px !important;
}

.largerInputForce {
    /* not really sure why this is needed but the box size is wrong without it*/
    width: 355px !important;
}

.responsive-row {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    /* Optional: adds space between columns */
}

.responsive-rowFull {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    /* Optional: adds space between columns */
}

.Column4DivGrid {
    flex: 1 1 25%;
    /* Grow, shrink, basis: roughly 4 columns */
    min-width: 150px;
    /* Prevents columns from getting too small */
    box-sizing: border-box;
}

.Column3DivGrid {
    flex: 1 1 33%;
    /* Grow, shrink, basis: roughly 4 columns */
    min-width: 150px;
    /* Prevents columns from getting too small */
    box-sizing: border-box;
}

.cblist>tbody>tr>td {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1100px) {
    .Column4DivGrid {
        flex-basis: 50%;
        /* 2 columns */
    }

    .Column3DivGrid {
        flex-basis: 50%;
        /* 2 columns */
    }

    .responsive-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        /* Optional: adds space between columns */
    }
}

@media (max-width: 700px) {
    .Column4DivGrid {
        flex-basis: 100%;
        /* 1 column */
    }

    .Column3DivGrid {
        flex-basis: 100%;
        /* 1 column */
    }
}

@media (max-width: 39.9em) {
    .content {
        margin-left: 0px;
        padding: 0px;
        width: 100%;
        font-family: 'Open Sans', sans-serif !important;
        min-height: 550px;
    }

    /*.loginTextBox {
            width: 100%;
            border-radius: 10px;
        }*/

    .column {
        padding-bottom: 0.325rem;
    }

    /* .submenu {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        padding-top: 0px;
    } */

    /* .submenu li a:hover {
        border-top-right-radius: 10px;
        color: #24303B !important;
        text-decoration: none !important;
        font-weight: bold !important;
    } */

    .largeInput {
        width: 45% !important;
        border-radius: 10px;
    }

    .largeInputForce {
        width: 137px !important;
        border-radius: 10px;
    }

    .largerInputForce {
        /* not really sure why this is needed but the box size is wrong without it*/
        width: 137px !important;
    }

    .entrytablarge>div>label {
        float: left;
        display: block;
        width: 45%;
        padding: 0px 30px 0 0;
        text-align: right;
        font-size: 100% !important;
    }

    .mediumInput {
        width: 40% !important;
        border-radius: 10px;
    }

    .smallInput {
        width: 18% !important;
        border-radius: 10px;
    }

}

/* ========================================
   Pagination Styles
   ======================================== */

.pager-div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pager-div span a {
    text-decoration: none;
    color: var(--Primary-Color, #00A192);
}

.pager-div>span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Current page number (active) */
.pager-div>span>span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: var(--Primary-Color, #00A192);
    color: white;
    border: 1px solid var(--Primary-Color, #00A192);
    border-radius: 50%;
    text-decoration: none;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* DataPager inline display - targets any span containing pager buttons */
span[id*="dpJobs"],
span[id*="dpDataPager"],
span[id*="dpProducts"] {
    display: flex !important;
    align-items: center;
    width: 100%;
    gap: 8px;
}

/* First child (TemplatePagerField) takes remaining space to push buttons right */
span[id*="dpJobs"]>span:first-child,
span[id*="dpDataPager"]>span:first-child,
span[id*="dpProducts"]>span:first-child {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Fix extra whitespace in template pager text */
span[id*="dpJobs"]>span:first-child span.body-medium,
span[id*="dpDataPager"]>span:first-child span.body-medium,
span[id*="dpProducts"]>span:first-child span.body-medium {
    word-spacing: normal;
}

span[id*="dpJobs"]>span:first-child span.body-medium span,
span[id*="dpDataPager"]>span:first-child span.body-medium span,
span[id*="dpProducts"]>span:first-child span.body-medium span {
    margin: 0 2px;
}

span[id*="dpJobs"]>span,
span[id*="dpDataPager"]>span,
span[id*="dpProducts"]>span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Current page number (active) in DataPager - direct child span without class */
span[id*="dpJobs"]>span:not(:first-child):not([class]),
span[id*="dpDataPager"]>span:not(:first-child):not([class]),
span[id*="dpProducts"]>span:not(:first-child):not([class]) {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: var(--Primary-Color, #00A192) !important;
    color: white !important;
    border: 1px solid var(--Primary-Color, #00A192);
    border-radius: 50%;
    text-decoration: none;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Current page - span inside the numeric pager span */
span[id*="dpJobs"]>span>span:not(.body-medium),
span[id*="dpDataPager"]>span>span:not(.body-medium),
span[id*="dpProducts"]>span>span:not(.body-medium) {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: var(--Primary-Color, #00A192) !important;
    color: white !important;
    border: 1px solid var(--Primary-Color, #00A192);
    border-radius: 50%;
    text-decoration: none;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Ensure links in pager have proper color */
span[id*="dpJobs"] a.pager-btn,
span[id*="dpDataPager"] a.pager-btn,
span[id*="dpProducts"] a.pager-btn {
    color: var(--Primary-Color, #00A192) !important;
    font-weight: 400 !important;
}

span[id*="dpJobs"] a.pager-btn:hover,
span[id*="dpDataPager"] a.pager-btn:hover,
span[id*="dpProducts"] a.pager-btn:hover {
    color: var(--Primary-900, #005540) !important;
    text-decoration: none !important;
}

/* Override for spans inside the body-medium text (labels showing numbers) */
span[id*="dpJobs"]>span:first-child span.body-medium span.body-medium,
span[id*="dpDataPager"]>span:first-child span.body-medium span.body-medium,
span[id*="dpProducts"]>span:first-child span.body-medium span.body-medium {
    display: inline !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    border-radius: 0 !important;
}

/* Numeric pager button (inactive page numbers - outlined circles) */
.pager-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--Primary-Color, #00A192);
    background: transparent;
    color: var(--Primary-Color, #00A192) !important;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 20px;
    cursor: pointer;
    text-decoration: none !important;
}

.pager-btn:hover {
    border: 1px solid var(--Primary-900, #005540);
    color: var(--Primary-900, #005540) !important;
    text-decoration: none !important;
    background: transparent;
}

/* Secondary pager button (First, Prev, Next, Last - outlined pills) */
.pager-btn-secondary {
    display: inline-flex;
    height: 40px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    border: 1px solid var(--Primary-Color, #00A192);
    background: transparent;
    text-decoration: none;
    color: var(--Primary-Color, #00A192) !important;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 20px;
    cursor: pointer;
}

.pager-btn-secondary:hover {
    border: 1px solid var(--Primary-900, #005540);
    color: var(--Primary-900, #005540) !important;
    text-decoration: none;
    background: transparent;
}

/* Disabled state for pager buttons */
.pager-btn-secondary.aspNetDisabled,
.pager-btn.aspNetDisabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Active/Current page number (filled teal circle) */
.pager-btn-current,
span[id*="dpJobs"] span.pager-btn,
span[id*="dpDataPager"] span.pager-btn,
span[id*="dpProducts"] span.pager-btn,
span[id*="dpJobs"]>span>span:not([class]):not(:empty),
span[id*="dpDataPager"]>span>span:not([class]):not(:empty),
span[id*="dpProducts"]>span>span:not([class]):not(:empty) {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--Primary-Color, #00A192);
    background: var(--Primary-Color, #00A192);
    color: white !important;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/* ===== C4 Custom Dropdown (reusable) =====
 * PURPOSE: Styles for custom dropdown components that replace native <select> elements.
 * RELATED JS: C4BehaviourNew9.js (initC4CustomDropdowns function)
 * 
 * USAGE: 
 *   - Apply .c4-custom-dropdown class to a <select> for explicit opt-in
 *   - Selects with .input or .inputBox56px are auto-converted by JS
 * 
 * CSS VARIABLES:
 *   - --height: Override trigger height (e.g., 48px)
 *   - --width: Override width (e.g., 200px)
 * 
 * IFREVERT - HOW TO REVERT:
 *   1. In C4BehaviourNew9.js, remove 'select.input, select.inputBox56px' from the querySelectorAll
 *   2. Delete the .c4-dropdown-trigger--input-style rule below
 *   3. Native browser <select> dropdowns will be used instead
 * ===== */
.c4-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.c4-dropdown-trigger {
    border: 1px solid rgba(22, 22, 22, 0.40);
    border-radius: 8px;
    outline: none;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px 28px 0px 16px;
    color: var(--Secondary-Text, #000);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    background: #FFF;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%2347544E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    user-select: none;
    box-sizing: border-box;
    height: var(--height, 48px);
    pointer-events: auto;
    z-index: 1;
}

.c4-dropdown-list {
    position: absolute;
    display: none;
    z-index: 1050;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: visible;
    margin: 0;
    padding: 8px 0;
    border: 1px solid rgba(22, 22, 22, 0.40);
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    width: auto;
    white-space: nowrap;
}

.c4-dropdown-list.open {
    display: block;
}

.c4-dropdown-list {
    scrollbar-width: thin;
    scrollbar-color: #00A192 transparent;
}

.c4-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.c4-dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}

.c4-dropdown-list::-webkit-scrollbar-thumb {
    background: #00A192;
    border-radius: 10px;
}

.c4-dropdown-option {
    display: flex;
    align-items: center;
    padding: 0px 16px;
    height: 36px;
    font-family: Roboto;
    font-size: 12px !important;
    color: var(--Secondary-Text, #000);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c4-dropdown-option:hover {
    background: #F5F5F5;
}

.c4-dropdown-option.selected {
    background: #E8F5F3;
    color: #00A192;
}

/* IFREVERT: Delete this rule when reverting to native select dropdowns */
/* Modifier for dropdowns from .input/.inputBox56px - more icon padding */
.c4-dropdown-trigger--input-style {
    background-position: right 16px center;
}

.regularLabel {
    align-items: center;
    display: inline-flex !important;
    flex-wrap: nowrap;
    gap: 2px;
    max-width: none !important;
    width: fit-content;
    white-space: nowrap;
}

.regularLabel svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Apply regularLabel styles to children of a parent container */
.regularLabelParent>* {
    align-items: center;
    display: inline-flex !important;
    flex-wrap: nowrap;
    gap: 2px;
    max-width: none !important;
    width: fit-content;
    white-space: nowrap;
}

.regularLabelParent>* svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}