@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');

:root {
    --Primary-Color: #00A192;
    --Secondary-Color: #A9CFC8;
    --Secondary-Text: #000;
    --Accent-1-950: #47544E;

    /* Common icon definitions */
    --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.12867 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;
    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: #00A192;
    /* 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;
    background-color: white !important;
}

body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: white !important;
}

.wrapper {
    display: flex;
    flex: 1;
    overflow-x: hidden;
}

.aside {
    position: fixed;
    width: 240px;
    height: calc(100% - 48px);
    border-radius: 16px;
    background: #D7E7E4;
    margin: 24px 0 24px 24px;
    padding-bottom: 32px;
    font-family: 'Open Sans', sans-serif !important;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    z-index: 100;
}

.aside.sidebar-shrunk {
    width: 128px;
}

.aside.sidebar-shrunk .sidebar-logo {
    width: 64px;
    height: auto;
    object-fit: contain;
    border-radius: 0 !important;
}

.aside.sidebar-shrunk .menu>li>a>span,
.aside.sidebar-shrunk .profile-wrapper,
.aside.sidebar-shrunk .profile-info-wrapper,
.aside.sidebar-shrunk .logOutButton>span,
.aside.sidebar-shrunk .logout-bg-wrapper,
.aside.sidebar-shrunk .app-download-card {
    display: none !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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.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 */
}

.aside.sidebar-shrunk .logOutButton svg {
    stroke: #00A192 !important;
}

/* 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 and layout in shrunk mode */
.aside.sidebar-shrunk .upper-menu {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 90px;
}

.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;
}

.dropdown-arrow {
    margin-left: auto;
}

.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;
}

#maininfo {
    padding-top: 110px;
}

.content {
    /* aside 240 + margin-left 24 + some gap */
    margin: 24px 32px 24px 296px;
    width: calc(100%);
    /* min-height: 867px; */
    height: auto;
    transition: margin-left 0.3s ease, width 0.3s ease;
    font-family: 'Open Sans', sans-serif !important;
}

.page-header.dashboard-mode {
    align-items: center;
    padding-bottom: 7px;
}

.page-header.dashboard-mode .welcome-text>span:first-child {
    color: var(--Schemes-On-Surface, black);

    /* H4 - Small Heading */
    font-family: Barlow;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

.page-header.dashboard-mode .welcome-text>span:last-child {
    color: var(--Primary-Color, #005540);
    font-family: Barlow;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid rgba(22, 22, 22, 0.60);
    padding-bottom: 24px;
    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: 210px;
}

.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;
}

.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: #00A192 transparent;
}

.upper-menu::-webkit-scrollbar {
    width: 6px;
}

.upper-menu::-webkit-scrollbar-track {
    background: transparent;
}

.upper-menu::-webkit-scrollbar-thumb {
    background: #00A192;
    border-radius: 10px;
}

.upper-menu::-webkit-scrollbar-thumb:hover {
    background: #00A192;
}

.upper-menu::-webkit-scrollbar-button {
    height: 0;
    width: 0
}

.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: black;
    width: 100%;
    border-radius: 32px !important;
    transition: background-color 0.2s ease;
}

.upper-menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: black !important;
    width: 100%;
    height: 56px;
    padding: 0 17px 0 20px !important;
    border-radius: 32px !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Dashboard button keeps full rounded corners — no submenu */
.menu>li:has(.dashboardButton):hover,
.menu>li.is-active:has(.dashboardButton) {
    border-radius: 32px;
}

.menu>li.is-active {
    border-radius: 32px;
    background: #00A192 !important;
    color: white !important;
}

.upper-menu>li.is-active>a {
    background: #00A192 !important;
    border-radius: 32px !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: black !important;
}

.menu>li.is-active>a>svg {
    stroke: white !important;
}

.menu>li.is-active>a>svg path {
    stroke: white !important;
}

/* Only flip fill on paths that explicitly use fill (e.g. fill="currentColor") — not stroke-only icons */
.menu>li.is-active>a>svg path[fill]:not([fill="none"]) {
    fill: white !important;
}

.menu>li>a>span {
    color: black;
    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: white !important;
}

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 handles display as Integrated Accordion */
.submenu {
    background-color: #FFFFFF !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;
}

/* Show submenu only on hover */
.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: var(--Schemes-Secondary, #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: #00A192 !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);
}

.menu>li:hover {
    border-radius: 32px !important;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-right: 0 !important;
}

/* 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: #FFFFFF !important;
    border: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    align-self: stretch;
    z-index: 0 !important;
    margin: 0 !important;
    padding: 10px 26.5px 12px 26.5px !important;
    text-align: left !important;
}

.is-dropdown-submenu>li {
    position: relative;
    padding: 8px 0 2px 0;
    background-color: transparent !important;
}

.is-dropdown-submenu>li>a,
.is-dropdown-submenu>li>a.newPageButton {
    color: var(--Schemes-Secondary, #625B71) !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;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background: transparent !important;
}

.is-dropdown-submenu>li>a:hover,
.is-dropdown-submenu>li>a.newPageButton:hover {
    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;
}

/* 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;
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

/* Ensure profile section is above background SVGs */
.liLogout>.profile-wrapper {
    position: relative;
    z-index: 2;
}

.liLogout:hover {
    border-radius: 16px !important;
}

.liLogout .profile-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.liLogout .profile-image-wrapper>img {
    width: 43px !important;
    height: 43px !important;
    border-radius: 43px !important;
    max-width: none;
    border: 3px solid #00A192;
    /* Updated to Supplier Green */
}

.liLogout .profile-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.liLogout .profile-name {
    color: #000;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.liLogout .profile-role {
    color: #000;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.liLogout .logOutButton {
    margin-top: 16px;
    display: flex;
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 32px;
    background: #00A192;
    height: 40px;
    width: 108px;
    min-width: 108px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.liLogout .logOutButton span {
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.liLogout .logOutButton svg {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    stroke: white;
    flex-shrink: 0;
    stroke-width: 2px;
}

/* App Download Card Styles */
.app-download-card {
    position: absolute;
    bottom: 180px;
    /* Positioned above logout section */
    left: 16px;
    right: 16px;
    background: #E8F1F0;
    /* Subtle mint background */
    border-radius: 16px;
    padding: 13px 15px 13px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    z-index: 5;
}

.app-download-card .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    cursor: pointer;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.2s;

    display: flex;
    width: 15px;
    height: 15px;
    padding: 1.8px 1.799px 1.8px 1.801px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #D7E7E4;
}

.app-download-card .close-btn:hover {
    opacity: 1;
}

.app-download-card .card-title {
    color: var(--Secondary-Text, #000);
    text-align: center;

    /* H6 – Tiny Heading */
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.app-download-card .download-btn {
    background: #00A192;
    color: #FFF !important;
    border-radius: 32px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s;
    z-index: 2;
}

.app-download-card .download-btn:hover {
    background: #00A192;
}

.app-download-card .card-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.app-download-card .card-bg-blobs svg {
    position: absolute;
}

.app-download-card .card-bg-blobs svg:first-child {
    top: -20px;
    right: -20px;
    height: 99px;
    width: 150px;
}

.app-download-card .card-bg-blobs svg:last-child {
    bottom: -20px;
    left: -20px;
    height: 99px;
    width: 150px;
}

.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;
}

.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% */
}

.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% */
    margin-bottom: 8px;
    display: block;
    min-height: 24px;
    /* Ensures label space is maintained even when empty */
}

/* Invisible label - maintains space but hides text */
.input-label-h6.invisible-label {
    visibility: hidden;
}

/* Ensure labels in grid maintain height even when not visible */
.input-group-col .input-label-h6:empty::before {
    content: "\00a0";
    /* Non-breaking space to maintain height */
    visibility: hidden;
}

.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: var(--gap, 8px);
}

/* Error Message Styles */
.error-message {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: var(--padding, 6px 12px);
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid #EF4444;
    margin-top: var(--margin-top, 4px);

    color: #DC2626;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    vertical-align: middle;
}

.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-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;
}

/* Button style */

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: 400;
    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;
}

/* Table design */

.table-head,
.table-head th {
    background-color: transparent !important;
    border: none !important;
    padding-bottom: 32px;
    padding-left: 0 !important;
    border-bottom: 1px solid rgba(22, 22, 22, 0.40) !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-top: 32px;
    padding-bottom: 24px;
    padding-left: 0 !important;
    border-bottom: 1px solid rgba(22, 22, 22, 0.40) !important;
    vertical-align: top !important;
}

.table-body tr {
    background-color: transparent !important;
}

.table-row {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.40);
    transition: background-color 0.2s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: rgba(0, 161, 146, 0.02);
}


.table-head i,
.table-head svg {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
    flex-shrink: 0;
}

.table-head th span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.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: 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: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
    flex-shrink: 0;
}

/* Flex alignment for divs containing icons */
.td div:has(> svg),
.td div:has(> i),
.td div:has(> img),
.td-primary div:has(> svg),
.td-primary div:has(> i),
.td-primary div:has(> img) {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}


.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% */
}

/* Text buttons */

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) !important;
    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;
}

.text-primary-button svg {
    stroke-width: 1px !important;
    stroke: var(--color, #00A192) !important;
    width: 24px;
    height: 24px;
}

.text-primary-button:hover {
    color: var(--color, #00A192) !important;
}

/* Driver Personal Details Styling */
.driver-personal-details-wrapper div:nth-child(2) {
    display: flex !important;
    gap: 4px;
    color: #000000 !important;
    font-family: Barlow;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
}

.driver-personal-details-wrapper div:nth-child(2) svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 1px;
    stroke: var(--Primary-Color, #000000) !important;

    path {
        stroke: var(--Primary-Color, #000000) !important;
    }
}



/* Checkbox Styling */
.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);
}

.dashboard-card-wrapper {
    display: flex !important;
    gap: 69px !important;
    justify-content: space-between !important;
}

.card-nofill {
    width: 100% !important;
    padding: 16px 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(22, 22, 22, 0.40) !important;
    background: #FEFFFF !important;
}

.card-nofill:hover {
    width: 100% !important;
    height: auto !important;
    padding: 16px 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(22, 22, 22, 0.40) !important;
    background: var(--Primary-950, #D7E7E4) !important;
}

.card-title-wrapper {
    width: 100% !important;
    display: flex !important;
    height: 30px !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.card-title-wrapper>svg {
    width: 51px !important;
    height: 51px !important;
}

.card-nofill:hover .card-title-wrapper svg rect {
    fill: #FFFFFF !important;
}

.card-nofill>.card-title-wrapper>span {
    color: var(--Primary-950, black) !important;
    /* H5 – Minor Heading */
    font-family: Barlow !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 28px !important;
    /* 140% */
}

.card-nofill:hover>.card-title-wrapper>span {
    color: var(--Light-Primary-Surface-Subtle, black) !important;
    /* H5 – Minor Heading */
    font-family: Barlow !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 28px;
    /* 140% */
}

.card-number {
    color: var(--Primary-950, black) !important;
    /* H1 - Large Headline */
    font-family: Barlow !important;
    font-size: 48px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 56px !important;
    /* 116.667% */
}

.card-nofill:hover .card-number {
    color: var(--Light-Primary-Surface-Subtle, black) !important;
    /* H1 - Large Headline */
    font-family: Barlow !important;
    font-size: 48px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 56px !important;
    /* 116.667% */
}

.card-button-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 9px !important;
}

.card-button {
    text-decoration: none !important;
    display: flex;
    width: fit-content;
    height: 36px !important;
    padding: 8px 16px !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 32px !important;
    border: 1px solid var(--Primary-Color, #00A192) !important;
    color: #00A192 !important;

    /* Body Small */
    font-family: Roboto !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    /* 142.857% */
}

.card-button:hover {
    display: flex;
    width: fit-content;
    height: 36px !important;
    padding: 8px 16px !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 32px !important;
    border: 1px solid var(--Primary-Color, #00A192) !important;
    background: var(--Accent-2-Color, #00A192) !important;
    color: white !important;

    /* Body Small */
    font-family: Roboto !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    /* 142.857% */
}

.card-nofill:hover .card-button {
    border: 1px solid #00A192 !important;
    background: #00A192 !important;
    color: white !important;
}

.decoration-none {
    text-decoration: none !important;
}

.decoration-none:hover {
    text-decoration: none !important;
    color: black !important;
}

/* 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 style  =============== */

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;
}

.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 {
    /* max-width: 75rem; */
    margin-right: auto;
    margin-left: auto;
}

.marginDiv {
    margin: .93rem .93rem .93rem .93rem;
}

.inputDiv {
    border-width: 0px !important;
    margin: 1px 0 1px 0;
    padding: .93rem .93rem .93rem .93rem;
    border-radius: 10px;
}

.inputDivHalf {
    border-width: 0px !important;
    margin: 1px 0 1px 0;
    padding: .46rem .46rem .46rem .46rem;
    border-radius: 10px;
}

.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;*/
}

.entrytabmedium>div {
    max-width: 650px;
    clear: left;
    padding-left: 5px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    /* equal height of the children */
    padding-top: 5px;
}


.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;
}

.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;
}

.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;
}

.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;
}

.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 {
    background: #F0F0F0;
    /*very pale grey*/
    border-width: 1px;
    border-style: solid;
    border-color: #5A6570;
    /* darker grey */
    width: 200px;
    height: 300px;
    overflow: auto;
}

.ui-autocomplete>li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #5A6570;
    /* darker grey */
    padding: 5px 5px 5px 5px;
}

.ui-autocomplete>li:hover {
    background: #F8F8F8;
    /*very pale grey*/
}

.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;
}

.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;
    padding: 0 !important;
    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;
}

/* Labels */
.c4InputLabel {
    font-size: 1rem !important;
    color: #222E3A;
    /*Text*/
}

.c4InputLabelBox {
    line-height: 2.5 !important;
    font-size: 1rem !important;
    color: #222E3A;
}

.c4InputLabelBoxSmall {
    font-size: .83rem !important;
    padding-top: 2px;
}

.c4InputLabelOnBlack {
    font-size: 14px !important;
    font-weight: bold !important;
}

.c4ErrorMessage {
    color: #E72D2B !important;
    font-size: 20px;
}

.c4InstrNormal {
    color: black;
    font-weight: normal;
}

.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;
}

#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: #0000FF !important;
    /* blue */
    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;
}

.menuLink {
    color: #DF1622 !important;
    /* MenuRed */
}

.menuLink:hover {
    color: #24303B !important;
    /* darkGrey */
}

/* 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 */
}

#mobile-menu .is-dropdown-submenu {
    position: relative;
    top: 0;
    left: 30%;
    z-index: 1;
    min-width: 200px;
    border: 0px solid #cacaca;
    width: 100%;
}


#mobile-menu .menu>li>ul>li>a {
    display: block;
    padding: 0.3rem 0rem;
    line-height: 1;
    text-align: left;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    font-size: 0.7em !important;
}


#mobile-menu .fa {
    width: 2em;
    font-size: 1.5em;
    float: left;
    vertical-align: middle;
    line-height: 0.2em
}

#mobile-menu .app-dashboard-sidebar-text {
    font-size: 0.7em;
    float: left;
}

#mobile-menu .menu>li,
.menu.horizontal>li {
    display: block;
    float: left;
    clear: both;
}

#mobile-menu .dropdown.menu>li.is-dropdown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-bottom-width: 6px;
    border-top-style: inset;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    margin-top: 3px;
}

.largeInputForce {
    /* not really sure why this is needed but the box size is wrong without it*/
    width: 280px !important;
}

@media (max-width: 768px) {
    .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;
    }

    .entrytablarge>div>label {
        float: left;
        display: block;
        width: 45%;
        padding: 0px 30px 0 0;
        text-align: right;
        font-size: 100% !important;
    }

    .mediumInput {
        width: 25% !important;
        border-radius: 10px;
    }

    .smallInput {
        width: 18% !important;
        border-radius: 10px;
    }
}

/* Journey Styles from Customer Portal */
.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;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-star {
    color: #F59E0B;
    font-size: 20px;
}

.journey-none {
    margin-top: 16px;
    color: #9CA3AF;
}

.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;
}

/* 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-selected svg {
    flex-shrink: 0;
    pointer-events: none;
    height: 14px;
    width: 14px;
}

.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;
}

.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% */
}

/* ===== 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: var(--width, 100%) !important;
    padding: 8px 32px 8px 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);
    outline: none;
    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-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;
}

/* Focus styles for input fields and dropdowns */
.inputWrapper:focus-within {
    border-color: #00A192;
    outline: none;
}

.c4-dropdown-trigger:focus {
    border-color: #00A192;
    outline: none;
}

.inlineInput:focus,
.inlineInput55px:focus,
.inlineInput83px:focus,
.inlineInput100:focus,
.inlineInput40:focus,
.inputBox56px:focus,
.inputBox36px:focus,
.input:focus,
.textarea:focus {
    border-color: #00A192;
    outline: none;
}