﻿/* ── Badge colours ───────────────────────────────────── */
.badge-open {
    background: #ffeed5;
    color: #f0ad4e;
}

.badge-inprogress {
    background: #ddf7ff;
    color: #5bc0de;
}

.badge-needsinfo {
    background: #f7e3ff;
    color: #9b59b6;
}

.badge-resolved {
    background: #d6f3e8;
    color: #5cb897;
}

.badge-closed {
    background: #e5e8ea;
    color: #6c757d;
}

.badge-reopened {
    background: #dfeaff;
    color: #3c77e7;
}

.badge-critical {
    background: #ffe7e4;
    color: #e75546;
}

.badge-high {
    background: #ffe8f3;
    color: #ff68b1;
}

.badge-medium {
    background: #ffedcf;
    color: #f39c12;
}

.badge-low {
    background: #daf5e5;
    color: #27ae60;
}

.badge-none {
    background: #eaeaea;
    color: #a2a2a2;
}

.badge-admin {
    background: #cfe2ff;
    color: #0d6efd;
}

.badge-client {
    background: #ffdeea;
    color: #ff7ba8;
}

.badge-active {
    background: #ddf2e9;
    color: #2ec47e;
}

.badge-inactive {
    background: #ffeaec;
    color: #ff5969;
}


/* ── Avatar circle ───────────────────────────────────── */
/*.avatar-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
}*/

/* ── Stat cards ──────────────────────────────────────── */
.stat-card {
    border-radius: .75rem;
}

.stat-value {
    line-height: 1.1;
}

/* ── Comments ────────────────────────────────────────── */
.comment-bubble {
    background: #f8f9fa;
    border-radius: .5rem;
    padding: .75rem 1rem;
    border-left: 3px solid #dee2e6;
}

.comment-internal {
    background: #fffde7;
    border-left-color: #f0ad4e;
}

/* ── Activity timeline ───────────────────────────────── */
.timeline-item {
    padding-left: 1rem;
    border-left: 2px solid #dee2e6;
    position: relative;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -5px;
        top: 4px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #0d6efd;
    }

/* ── Login page ──────────────────────────────────────── */
.login-page {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.login-card {
    border-radius: 1rem;
}

/* ── Table tweaks ────────────────────────────────────── */
.table td, .table th {
    vertical-align: middle;
}


.dropdown-menu {
    z-index: 1021;
}

/* ── Submit button spinner ───────────────────────────── */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    display: inline-block;
    animation: spin 0.8s linear infinite;
}



/*===============================================================*/
:root {
    --c-grey-100: #f4f6f8;
    --c-grey-200: #e3e3e3;
    --c-grey-300: #b2b2b2;
    --c-grey-400: #7b7b7b;
    --c-grey-500: #3d3d3d;
    --c-blue-500: #688afd;
    /*==========================================*/
    --background-light-grey: #f1f1f1;
    --background-white: #ffffff;
    --background-linear-green: #388563;
    --background-linear-black: #0D1F17;
    /*==========================================*/
    --font-white: #ffffff;
    --font-black: #010101;
    --font-light-black: #333333;
    --font-grey: #7a7a7a;
    --font-danger: #FF2D2D;
    --font-success: #319C5E;
    --font-dark-green: #337859;
    /*==========================================*/
    --button-danger: #F45757;
    --table-light-border: #E5E5E5;
    --font-Regular: "Montserrat-Regular";
    --font-medium: "Montserrat-Medium";
    --font-semibold: "Montserrat-SemiBold";
    --font-bold: "Montserrat-Bold";
    /*==========================================*/
    --dashboard-radius-sm: 10px;
    --dashboard-radius-md: 14px;
    --dashboard-radius-lg: 18px;
    --dashboard-shadow-sm: 0 8px 20px rgba(13, 31, 23, 0.08);
    --dashboard-shadow-md: 0 16px 36px rgba(13, 31, 23, 0.12);
    --dashboard-shadow-hover: 0 1px 10px rgba(13, 31, 23, 0.10);
    --dashboard-border: rgba(51, 120, 89, 0.12);
    --dashboard-glass: rgba(255, 255, 255, 0.78);
    --dashboard-glass-strong: rgba(255, 255, 255, 0.92);
    --stat-total: var(--c-blue-500);
    --stat-open: #f2a93b;
    --stat-progress: #4aa8c7;
    --stat-resolved: var(--font-success);
    --stat-closed: var(--font-grey);
    --stat-critical: var(--button-danger);
    /*==========================================*/
}


html {
    height: 100%;

    body {
        height: 100%;
        background-color: #f0f4f3;
        font-family: var(--font-Regular);

        a {
            text-decoration: none;
        }
    }
}

.bodyWrapper {
    display: flex;
    align-items: stretch;
}

.mainWrapper {
    height: calc(100vh - 10px);
    overflow: auto;
    width: 100%;
    padding: 10px 10px 10px 20px;
}


.navbar {
    min-width: 250px;
    max-width: 250px;
    background: radial-gradient(211.73% 211.73% at 50% -111.73%, var(--background-linear-green) 50%, var(--background-linear-black) 100%);
    color: var(--font-white);
    transition: all 0.3s ease;
    box-shadow: 0 18px 45px rgba(13, 31, 23, 0.28);
    height: calc(100vh - 20px);
    left: 10px;
    top: 10px;
    border-radius: 18px;
    position: relative;
    z-index: 111;
    align-items: flex-start;
    overflow: hidden;
    /*border: 1px solid rgba(255, 255, 255, 0.12);*/
}

    .navbar::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)), radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%);
    }

.navbarContainerFluid {
    width: 100%;
    height: 100%;
    padding: 4px 10px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.navbarBrand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    padding: 8px 8px;
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

    .navbarBrand img {
        width: 140px;
        height: auto;
    }

    .navbarBrand h4 {
        font-size: clamp(10px, 1vw, 16px);
        margin: 0;
        color: var(--font-dark-green);
        font-family: var(--font-semibold);
    }

.navbarNavigation {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 0;
    margin-bottom: 14px;
    list-style: none;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
}

    .navbarNavigation .nav-item,
    .navbarNavigationBottom .nav-item {
        width: 100%;
    }

    .navbarNavigation .nav-link,
    .navbarNavigation a,
    .navbarNavigationBottom .nav-link,
    .logoutButton {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        position: relative;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.78);
        font-family: var(--font-medium);
        font-size: clamp(12px, 1vw, 14px);
        border: 1px solid transparent;
        transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

        .navbarNavigation .nav-link i,
        .navbarNavigation a i,
        .navbarNavigationBottom .nav-link i {
            font-size: clamp(12px, 1vw, 16px);
            opacity: 0.9;
        }

        .navbarNavigation .nav-link:hover,
        .navbarNavigation a:hover {
            color: var(--font-white);
            background: rgba(255, 255, 255, 0.11);
            border-color: rgba(255, 255, 255, 0.14);
            /*transform: translateX(3px);*/
        }

        .navbarNavigation .nav-link.active,
        .navbarNavigation a.active {
            color: var(--font-white);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.22);
            box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.85), 0 10px 22px rgba(0, 0, 0, 0.16);
        }

.navbarNavigationBottom {
    list-style: none;
    padding: 10px;
    margin: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    bottom: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mobileNavbarContent {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.logoutItem {
    order: 1;
}

.userInfoItem {
    order: 2;
}

.logoutItem form {
    margin: 0;
}

.logoutButton {
    /*background: rgba(244, 87, 87, 0.12);*/
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(244, 87, 87, 0.22);
    cursor: pointer;
}

    .logoutButton:hover {
        color: var(--font-white);
        background: rgba(244, 87, 87, 0.22);
        border-color: rgba(244, 87, 87, 0.38);
        /*transform: translateY(-1px);*/
    }

.userProfileLink {
    background: rgba(255, 255, 255, 0.08);
}

    .userProfileLink:hover {
        color: var(--font-white);
        background: rgba(255, 255, 255, 0.14);
    }

.avatar-circle {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--font-dark-green);
    font-family: var(--font-semibold);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    font-weight: 700;
    font-size: clamp(10px, 1vw, 13px);
}

.userProfileText {
    min-width: 0;
    color: var(--font-white);
}

.userRoleText {
    font-size: clamp(8px, 1vw, 10px);
    opacity: 0.75;
}


/*-----*/
.dashboardStatsGrid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 18px;
    border-radius: var(--dashboard-radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)), radial-gradient(circle at top right, rgba(56, 133, 99, 0.12), transparent 42%);
    border: 1px solid var(--dashboard-border);
    /*box-shadow: var(--dashboard-shadow-sm);*/
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

    .stat-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 4px;
        background: var(--stat-color);
        opacity: 0.9;
    }

    .stat-card::after {
        content: "";
        position: absolute;
        right: -18px;
        top: -18px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--stat-color) 18%, transparent);
        pointer-events: none;
        filter: blur(35px);
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--dashboard-shadow-hover);
        border-color: color-mix(in srgb, var(--stat-color) 30%, transparent);
    }

.stat-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--stat-color);
    background: color-mix(in srgb, var(--stat-color) 12%, white);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--stat-color) 18%, transparent);
}

    .stat-icon i {
        font-size: clamp(16px, 1vw, 20px);
    }

.stat-value {
    color: var(--font-light-black);
    font-family: var(--font-bold);
    font-size: clamp(18px, 1vw, 34px);
    line-height: 1;
    letter-spacing: 0;
}

.stat-label {
    margin-top: 6px;
    color: var(--font-grey);
    font-family: var(--font-medium);
    font-size: clamp(9px, 1vw, 13px);
}

.stat-total {
    --stat-color: var(--stat-total);
}

.stat-open {
    --stat-color: var(--stat-open);
}

.stat-progress {
    --stat-color: var(--stat-progress);
}

.stat-resolved {
    --stat-color: var(--stat-resolved);
}

.stat-closed {
    --stat-color: var(--stat-closed);
}

.stat-critical {
    --stat-color: var(--stat-critical);
}

.dashboardPanel {
    overflow: hidden;
    border-radius: var(--dashboard-radius-lg);
    background: var(--dashboard-glass-strong);
    border: 1px solid var(--dashboard-border);
    box-shadow: rgb(41 110 87 / 10%) 0px 10px 15px -3px, rgb(45 123 104 / 5%) 0px 4px 6px -2px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dashboardPanelHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--table-light-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 248, 0.78));
}

.dashboardPanelTitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--font-light-black);
    font-family: var(--font-semibold);
    font-size: clamp(12px, 1vw, 16px);
}

.dashboardPanelIcon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--font-dark-green);
    background: rgba(56, 133, 99, 0.1);
}

.dashboardPanelAction {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 10px;
    color: var(--font-dark-green);
    font-family: var(--font-semibold);
    font-size: clamp(10px, 1vw, 13px);
    background: rgba(56, 133, 99, 0.08);
    border: 1px solid rgba(56, 133, 99, 0.16);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .dashboardPanelAction:hover {
        color: var(--font-white);
        background: var(--background-linear-green);
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(56, 133, 99, 0.22);
    }

.dashboardTableWrapper {
    width: 100%;
    overflow-x: auto;
}

.dashboardTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

    .dashboardTable th {
        padding: 13px 16px;
        color: var(--font-grey);
        background: rgba(244, 246, 248, 0.82);
        font-family: var(--font-semibold);
        font-size: clamp(8px, 0.8vw, 11px);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .dashboardTable td {
        padding: 15px 16px;
        color: var(--font-light-black);
        font-size: clamp(9px, 0.9vw, 13px);
        vertical-align: middle;
        border-top: 1px solid rgba(229, 229, 229, 0.78);
    }

    .dashboardTable tbody tr {
        transition: background-color 0.18s ease, transform 0.18s ease;
    }

        .dashboardTable tbody tr:hover {
            background: rgba(56, 133, 99, 0.045);
        }

    .dashboardTable code {
        padding: 4px 7px;
        border-radius: 7px;
        color: var(--font-dark-green);
        background: rgba(56, 133, 99, 0.08);
        font-size: clamp(8px, 0.9vw, 12px);
        white-space: nowrap;
    }

        .dashboardTable code.blueCode {
            color: #4991eb;
            background: rgb(231 242 255);
        }

        .dashboardTable code.orangeCode {
            color: #ff8157;
            background: rgb(255 237 231);
        }

.code {
    padding: 4px 7px;
    border-radius: 7px;
    font-family: var(--font-medium);
    color: var(--font-dark-green);
    background: rgba(56, 133, 99, 0.08);
    font-size: clamp(8px, 0.8vw, 12px);
}

    .code.blueCode {
        color: #4991eb;
        background: rgb(231 242 255);
    }

    .code.orangeCode {
        color: #ff8157;
        background: rgb(255 237 231);
    }

    .code.linerCode {
        color: #7a2467;
        background: linear-gradient(135deg, rgba(255, 214, 238, 0.95), rgba(232, 222, 255, 0.95));
        border: 1px solid rgba(176, 86, 150, 0.18);
    }

.ticketTitleCell {
    max-width: 260px;
}

    .ticketTitleCell span {
        display: block;
        overflow: hidden;
        color: var(--font-light-black);
        font-family: var(--font-semibold);
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.dateCell {
    color: var(--font-grey);
    white-space: nowrap;
}

.actionCell {
    width: 56px;
    text-align: right;
}

.tableIconButton {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--font-dark-green);
    background: rgba(56, 133, 99, 0.08);
    border: 1px solid rgba(56, 133, 99, 0.14);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

    .tableIconButton:hover {
        color: var(--font-white);
        background: var(--background-linear-green);
        transform: translateY(-1px);
    }

    .tableIconButton.deleteButton {
        color: #F45757;
        background: rgba(244, 87, 87, 0.08);
        border-color: rgba(244, 87, 87, 0.18);
    }

        .tableIconButton.deleteButton:hover {
            color: #ffffff;
            background: #F45757;
        }

.emptyTableState {
    padding: 34px 16px;
    color: var(--font-grey);
    text-align: center;
    font-family: var(--font-medium);
}

.dashboardTable .badge {
    padding: 6px 9px;
    border-radius: 999px;
    font-family: var(--font-semibold);
    font-size: clamp(8px, 0.8vw, 11px);
}

/*===================================================*/

.detailPageHeader {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    /*gap: 10px;*/
    margin-bottom: 10px;
    border: 1px solid rgba(51, 120, 89, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)), radial-gradient(circle at top right, rgba(56, 133, 99, 0.1), transparent 40%);
    padding: 14px;
    border-radius: 18px;
}

.detailPageTitleBlock {
    display: flex;
    gap: 10px;
    align-items: center;
}

.detailPageHeading {
    font-size: clamp(12px, 1vw, 16px);
    margin: 0;
    color: var(--font-light-black);
    font-family: var(--font-semibold);
    text-box-trim: trim-both;
}

.detailBackLink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7a7a7a;
    font-family: var(--font-medium);
    font-size: 0.82rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .detailBackLink:hover {
        color: #337859;
        transform: translateX(-2px);
    }

.detailPageTitle {
    margin-bottom: 7px;
    color: #333333;
    font-family: var(--font-bold);
    font-size: clamp(0.6rem, 1.1vw, 1.1rem);
    line-height: 1.25;
}

.detailTicketCode {
    display: inline-flex;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 8px;
    color: #337859;
    background: rgba(56, 133, 99, 0.08);
    font-size: clamp(0.6rem, 1vw, 0.78rem);
}

.detailPageActions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

    .detailPageActions form {
        margin: 0;
    }

.detailButton,
.detailPrimaryButton {
    position: relative;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(56, 133, 99, 0.18);
    color: #337859;
    background: rgba(56, 133, 99, 0.08);
    font-family: var(--font-semibold);
    font-size: clamp(0.6rem, 0.94vw, 0.9rem);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .detailButton:hover,
    .detailPrimaryButton:hover {
        color: #ffffff;
        background: #388563;
        transform: translateY(-1px);
    }

    .detailButton i {
        font-size: clamp(0.62rem, 1vw, 0.92rem);
    }

    .detailButton span {
        font-size: clamp(0.6rem, 0.9vw, 0.9rem);
    }

.detailButtonMuted {
    color: #333333;
    background: rgba(61, 61, 61, 0.06);
    border-color: rgba(61, 61, 61, 0.12);
}

.detailButtonDanger {
    color: #F45757;
    background: rgba(244, 87, 87, 0.08);
    border-color: rgba(244, 87, 87, 0.18);
}

    .detailButtonDanger:hover {
        color: #ffffff;
        background: #F45757;
    }

.detailButtonBordered {
    color: #212529;
    background: rgb(255 255 255 / 8%);
    border-color: rgb(65 65 65 / 18%);
}

    .detailButtonBordered:hover {
        color: #212529;
        background: #f1f1f1;
    }

.appliedFilterCount {
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 30px;
    background-color: #388563 !important;
    color: #ffffff !important;
    font-size: clamp(8px, 0.8vw, 12px) !important;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #fff;
}

.detailButton.disabled {
    pointer-events: none;
    opacity: 0.7;
    user-select: none;
    cursor: not-allowed;
}

button[disabled] {
    pointer-events: none;
    opacity: 0.7;
    user-select: none;
    cursor: not-allowed;
}

.filterButton[aria-expanded="true"] {
    color: #ffffff;
    background: #388563;
}

.detailDropdownMenu {
    padding: 8px;
    border: 1px solid rgba(51, 120, 89, 0.12);
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(13, 31, 23, 0.12);
    width: 100%;
}

.detailDropdownItem {
    border-radius: 10px;
    padding: 8px 10px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #f4f4f4;
}

.detailStatusStrip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.detailDashboardLayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0px;
}

.detailMainStack,
.detailSideStack {
    display: grid;
    gap: 0px;
    /*align-content: start;*/
}

.detailSectionContainer {
    border: 1px solid rgba(51, 120, 89, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)), radial-gradient(circle at top right, rgba(56, 133, 99, 0.1), transparent 40%);
    /*box-shadow: 0 10px 26px rgba(13, 31, 23, 0.08);*/
    /*backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);*/
    margin-bottom: 10px;
}

.detailSectionContainer {
    overflow: hidden;
    border-radius: 18px;
}

    .detailSectionContainer.detailSectionContainerVisible {
        overflow: visible;
    }

.detailSectionHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.86);
    background: rgba(255, 255, 255, 0.62);
    border-radius: 18px 18px 0 0;
}

.detailSectionTitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    font-family: var(--font-semibold);
    font-size: clamp(0.72rem, 1vw, 1rem);
}

    .detailSectionTitle i {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        color: #337859;
        background: rgba(56, 133, 99, 0.1);
    }

.detailSectionBody {
    padding: 18px;
}

.detailGrid,
.detailGridThree {
    display: grid;
    gap: 14px;
}

.detailGridThree {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detailGridItem {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(51, 120, 89, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)), radial-gradient(circle at top right, rgba(56, 133, 99, 0.1), transparent 40%);
    /*box-shadow: 0 10px 26px rgba(13, 31, 23, 0.08);*/
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.detailGridItemFull {
    grid-column: 1 / -1;
}

.detailStatusStrip .detailGridItem::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: color-mix(in srgb, #319c5e 18%, transparent);
    pointer-events: none;
    filter: blur(35px);
}

.detailGridItemInner {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7a7a7a;
    margin-bottom: 5px;
}

    .detailGridItemInner i {
        font-size: clamp(0.85rem, 1vw, 1rem);
    }

    .detailGridItemInner .detailLabel {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 0px;
        font-family: var(--font-semibold);
        font-size: clamp(0.6rem, 0.9vw, 0.8rem);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

.detailCommentItemInner {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--font-dark-green);
}

    .detailCommentItemInner i {
        font-size: clamp(0.85rem, 1vw, 0.9rem);
    }

    .detailCommentItemInner span {
        margin-bottom: 0;
        font-size: clamp(0.68rem, 0.8vw, 0.86rem);
    }

.detailLabel {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    font-family: var(--font-semibold);
    font-size: clamp(0.58rem, 0.8vw, 0.76rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detailValue,
.detailLink {
    color: #333333;
    font-family: var(--font-semibold);
    font-size: clamp(0.66rem, 0.95vw, 0.95rem);
}

.detailLink {
    color: #337859;
    word-break: break-word;
}

.detailDescription {
    margin: 0;
    color: #333333;
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    line-height: 1.65;
}

.detailDivider {
    height: 1px;
    margin: 18px 0;
    background: linear-gradient(90deg, transparent, rgba(51, 120, 89, 0.2), transparent);
}

.detailBadge,
.detailSectionContainer .badge {
    padding: 6px 9px;
    border-radius: 999px;
    font-family: var(--font-semibold);
    font-size: clamp(0.52rem, 0.85vw, 0.72rem);
}

.detailActivityBody {
    max-height: 350px;
    overflow-y: auto;
}

.detailTimeline {
    display: grid;
    gap: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 10px;
}

.detailTimelineItem {
    position: relative;
    padding-left: 20px;
    padding-bottom: 15px;
}

    .detailTimelineItem::before {
        content: "";
        position: absolute;
        left: -8px;
        top: 1px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #4c866d;
        box-shadow: 0 0 0 4px rgb(50 119 88 / 14%);
    }

.timelineItemInner {
    background: rgb(232 247 241);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #acdec8;
}

.detailTimelineTitle {
    color: #333333;
    font-family: var(--font-semibold);
    font-size: clamp(0.65rem, 0.95vw, 0.86rem);
    margin-bottom: 2px;
}

.detailTimelineDate,
.detailMetaText,
.detailHelpText,
.detailEmptyText {
    color: #7a7a7a;
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
}

.detailTimelineDate {
    font-size: clamp(0.6rem, 0.85vw, 0.8rem);
}

.detailAttachmentList,
.detailCommentsList {
    display: grid;
    gap: 10px;
    max-height: 250px;
    overflow: auto;
}

.detailAttachmentItemMain {
    border-radius: 14px;
    border: 1px solid rgba(51, 120, 89, 0.1);
    background: rgb(60 182 127 / 10%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .detailAttachmentItemMain:hover {
        border: 1px solid rgba(51, 120, 89, 0.2);
    }

.detailAttachmentItem {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
}

.detailAttachmentContent {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333333;
    font-family: var(--font-medium);
}

    .detailAttachmentContent i {
        font-size: clamp(16px, 1.2vw, 22px);
        color: #4c876d;
    }

.detailAttachmentInfo {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.detailAttachmentName {
    min-width: 0;
    font-size: clamp(9px, 0.9vw, 13px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-semibold);
}
/*.detailAttachmentMeta {
    font-size: clamp(8px, 0.8vw, 12px);
    opacity: .7;
    margin-top: 1px;
}*/

.detailAttachmentMetaRow {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 8px 12px;
    border-top: 1px solid rgba(51, 120, 89, 0.1);
}

.attachmentMetaPill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border-radius: 999px;
    font-family: var(--font-medium);
    font-size: clamp(9px, 0.8vw, 12px);
    line-height: 1.2;
    color: #4f7567;
    background: rgba(56, 133, 99, 0.08);
    border: 1px solid rgba(56, 133, 99, 0.12);
}

    .attachmentMetaPill i {
        font-size: 11px;
        color: #4d886f;
    }

.detailAttachmentActions {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .detailAttachmentActions form {
        margin: 0;
    }

.detailIconButton {
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(56, 133, 99, 0.16);
    color: #337859;
    background: rgba(56, 133, 99, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .detailIconButton:hover {
        color: #ffffff;
        background: #388563;
        transform: translateY(-1px);
    }

    .detailIconButton i {
        font-size: clamp(0.70rem, 1vw, 1rem);
    }

.detailIconButtonDanger {
    color: #F45757;
    background: rgba(244, 87, 87, 0.08);
    border-color: rgba(244, 87, 87, 0.18);
}

    .detailIconButtonDanger:hover {
        color: #ffffff;
        background: #F45757;
    }

.detailIconButtonGreen {
    color: #4c876d;
    background: rgb(210 237 225);
    border-color: rgb(124 203 168);
}

    .detailIconButtonGreen:hover {
        color: #ffffff;
        background: #4c876d;
        border-color: #4c876d;
    }

.detailEmptyState {
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 30px 14px;
    color: #7a7a7a;
    text-align: center;
    font-family: var(--font-medium);
    font-size: clamp(0.66rem, 1vw,0.86rem);
}

.detailCompactEmptyState {
    padding: 20px 14px;
}

.detailEmptyState i {
    color: rgba(51, 120, 89, 0.45);
    font-size: 1.7rem;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.detailForm {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.detailFileInput,
.detailTextarea,
.detailSelect {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(51, 120, 89, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: #333333;
    font-family: var(--font-Regular);
    font-size: clamp(10px, 0.95vw, 14px);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.detailSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%237a7f8c' d='M31.3 192h257.3c28.4 0 42.8 34.5 22.6 54.6l-128.6 128c-12.5 12.5-32.8 12.5-45.3 0l-128.6-128c-20.2-20.1-5.8-54.6 22.6-54.6z'/></svg>");
    background-position: right 10px top 48%;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.detailFileInput,
.detailSelect {
    padding: 8px 10px;
}

.detailTextarea {
    resize: vertical;
    padding: 12px;
}

    .detailFileInput:focus,
    .detailTextarea:focus,
    .detailSelect:focus {
        border-color: rgba(56, 133, 99, 0.42);
        box-shadow: 0 0 0 4px rgba(56, 133, 99, 0.1);
    }

.detailCheckbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b98016;
    font-family: var(--font-medium);
    font-size: clamp(9px, 0.9vw, 13px);
}

.detailComment {
    padding: 14px;
    border-radius: 15px;
    border: 1px solid rgba(51, 120, 89, 0.1);
    background: rgb(60 182 127 / 10%);
}

.comment-internal {
    background: rgba(242, 169, 59, 0.1);
    border-color: rgba(242, 169, 59, 0.22);
}

.comment-internal {
    .detailIconButtonGreen {
        color: #ff9922;
        background: rgb(255 224 189);
        border-color: rgb(255 191 117);
    }

        .detailIconButtonGreen:hover {
            color: #ffffff;
            background: #ff9922;
            border-color: #ff9922;
        }
}

.detailCommentHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.detailCommentInner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.detailMeta {
    color: #333333;
    font-family: var(--font-semibold);
    font-size: clamp(10px, 1vw, 14px);
}

.detailCommentText {
    margin: 0px;
    color: #333333;
    font-size: clamp(9px, 0.9vw, 13px);
    line-height: 1.55;
    white-space: normal;
    word-break: break-all;
}

.detailAssignForm {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.flexItem {
    display: flex;
    gap: 4px;
    align-items: center;
}

.gridPagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-top: 1px solid rgba(229, 229, 229, 0.78);
}

.gridPagerCount span {
    font-size: clamp(9px, 1vw, 14px);
    margin: 0;
}

/*==============Pagination==============*/
.paginationModern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0px;
    margin: 0;
}

    .paginationModern .page-item {
        display: inline-flex;
    }

    .paginationModern .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px !important;
        border: 1px solid rgba(56, 133, 99, 0.16);
        color: var(--font-dark-green);
        background: rgba(56, 133, 99, 0.08);
        font-family: var(--font-semibold);
        font-size: clamp(10px, 1vw, 14px);
        box-shadow: none;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

        .paginationModern .page-link:hover {
            color: var(--font-white);
            background: var(--background-linear-green);
            border-color: var(--background-linear-green);
        }

        .paginationModern .page-link:focus {
            color: var(--font-dark-green);
            background: rgba(56, 133, 99, 0.12);
            border-color: rgba(56, 133, 99, 0.32);
        }

    .paginationModern .page-item.active .page-link {
        color: var(--font-white);
        background: var(--background-linear-green);
        border-color: var(--background-linear-green);
    }

    .paginationModern .page-item.disabled .page-link {
        color: var(--font-grey);
        background: rgba(122, 122, 122, 0.08);
        border-color: rgba(122, 122, 122, 0.12);
        pointer-events: none;
        opacity: 0.65;
    }


.filterLayoutContainerInner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 15px;
}

.filterButtonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid rgba(229, 229, 229, 0.78);
}

.fieldContainer {
    position: relative;
    margin: 0;
    width: 100%;
}

    .fieldContainer label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        margin: 0;
        font-family: var(--font-medium);
        color: var(--font-black);
        font-size: clamp(9px, 0.9vw, 12px);
        position: relative;
    }

.requiredfield label:after {
    content: "*";
    position: absolute;
    color: red;
    padding-left: 2px;
    font-size: 14px;
}

.fieldContainer input,
.fieldContainer select,
.fieldContainer textarea {
    width: 100%;
    padding: 8px 12px;
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 500;
    border: 1px solid rgba(51, 120, 89, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--font-light-black);
    transition: all 0.15s ease;
    font-family: var(--font-medium);
}

.fieldContainer select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%237a7f8c' d='M31.3 192h257.3c28.4 0 42.8 34.5 22.6 54.6l-128.6 128c-12.5 12.5-32.8 12.5-45.3 0l-128.6-128c-20.2-20.1-5.8-54.6 22.6-54.6z'/></svg>");
    background-position: right 10px top 48%;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    cursor: pointer;
    padding-right: 30px;
}

    .fieldContainer input:focus,
    .fieldContainer select:focus,
    .fieldContainer textarea:focus {
        border-color: rgba(56, 133, 99, 0.42);
        box-shadow: 0 0 0 4px rgba(56, 133, 99, 0.1);
    }

.fieldContainerInner {
    position: relative;
    width: 100%;
}

    .fieldContainerInner input {
        padding-right: 34px;
    }

    .fieldContainerInner i {
        font-size: clamp(14px, 1vw, 20px);
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0%, -50%);
        color: #5294ff;
    }

    .fieldContainerInner .fieldContainerAction {
        position: absolute;
        top: 50%;
        right: 4px;
        padding: 4px 6px;
        transform: translate(0%, -50%);
        border: none;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .fieldContainerInner .fieldContainerAction i {
            position: static;
            transform: none;
        }

.textareaThreeCol textarea {
    height: 88%;
}

.detailActionContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid rgba(229, 229, 229, 0.78);
}

.noRecordsGridContainer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

    .noRecordsGridContainer i {
        font-size: clamp(18px, 2vw, 32px);
        color: #4d876d;
        opacity: 0.8;
    }

    .noRecordsGridContainer span {
        font-size: clamp(10px, 1vw, 14px);
    }

.detailBodyLayout {
    display: grid;
    gap: 10px;
}

.gridOneColLayout {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
}

.gridTwoColLayout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gridThreeColLayout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.gridFourColLayout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.gridThreeOneColLayout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 15px;
}

.gridOneThreeColLayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 15px;
}


.gridThreeOneCardLayout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 10px;
}



/*=================*/
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader {
    width: 350px;
    height: 350px;
    opacity: 1;
}

.tableIconMain i {
    font-size: clamp(14px, 1vw, 18px);
}

.iti {
    width: 100%;
}

    .iti .iti__dropdown-content {
        border-radius: 10px;
        padding: 6px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border: 1px solid #e3e3e3;
    }

.iti--inline-dropdown .iti__dropdown-content {
    z-index: 9999;
}

.iti .iti__selected-country-primary {
    background-color: #f5f5f5;
    border-radius: 7px 0 0 7px;
}

.iti .iti__dropdown-content .iti__search-input {
    padding: 8px 12px 8px 26px;
    outline: none;
}

.iti .iti__dropdown-content .iti__country-list {
    margin-top: 8px;
}

    .iti .iti__dropdown-content .iti__country-list li {
        font-size: clamp(10px, 1vw, 14px);
        border-radius: 6px;
    }

.iti .iti__selected-dial-code {
    font-size: clamp(10px, 1vw, 14px);
}

/*======= switch ======*/
.switchSmallMain {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .switchSmallMain .switchSmallText {
        font-size: clamp(9px, 0.9vw, 13px);
        color: #25313e !important;
        font-weight: 500;
        margin: 0;
        cursor: pointer;
    }

.switchSmallContainer {
    margin: 0;
    display: flex;
}

    .switchSmallContainer input {
        display: none;
    }

    .switchSmallContainer small {
        display: inline-block;
        width: 32px;
        height: 18px;
        background: #768287;
        border-radius: 30px;
        position: relative;
        cursor: pointer;
    }

        .switchSmallContainer small:before {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: .3s;
            box-shadow: -3px 0 3px rgba(0,0,0,0.1);
        }

    .switchSmallContainer input:checked ~ small {
        /*background: linear-gradient(25deg, #388563, #0D1F17);*/ /*#0b81fe*/
        background: linear-gradient(25deg, #47b282, #143c2a);
        transition: .3s;
    }

        .switchSmallContainer input:checked ~ small:before {
            transform: translate(14px, 0px);
            transition: .3s;
        }


/*============Modal===========*/
.modalCommon {
    backdrop-filter: blur(6px);
}

    .modalCommon .modal-content {
        border-radius: 25px;
    }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: clamp(14px, 1.3vw, 20px);
    font-family: var(--font-semibold);
    display: flex;
    gap: 5px;
    align-items: center;
}

.btnClose {
    background-color: #f2f2f2;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    transition: all 0.2s linear;
}

    .btnClose i {
        font-size: clamp(14px, 1.3vw, 20px);
        color: #3c3c3c;
    }

    .btnClose:hover {
        background-color: #ececec;
    }

.modalBody {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

    .modalBody h4 {
        font-size: clamp(12px, 1.2vw, 18px);
        font-family: var(--font-semibold);
        margin: 0;
    }

    .modalBody .modalSubText {
        font-size: clamp(10px, 1vw, 14px);
        font-family: var(--font-Regular);
        margin: 0;
        margin-top: 6px;
    }

.labelText {
    background: #f2f2f2;
    padding: 4px 10px;
    border-radius: 6px;
}

code.blueCodeText {
    padding: 4px 8px;
    border-radius: 7px;
    color: #7373ff;
    background: rgb(133 131 255 / 15%);
    font-size: clamp(8px, 1vw, 12px);
    font-family: var(--font-medium);
}



/*=========================*/
.accessAccordion {
    .accordion-item {
        border: 1px solid rgba(56, 133, 99, .25);
        background: radial-gradient(circle at top left, rgba(56, 133, 99, .18), transparent 60%), radial-gradient(circle at bottom right, rgba(102, 194, 145, .12), transparent 60%), rgba(255, 255, 255, .03);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 16px !important;
        overflow: hidden;
        margin-bottom: 10px;
        box-shadow: 0 .125rem .5rem rgba(0,0,0,.05);
    }

    .accordion-header {
    }

    .accordion-button {
        background: transparent;
        padding: 16px 20px;
    }

        .accordion-button:not(.collapsed) {
            background: transparent;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button::after {
            margin-left: 1rem;
            background-color: #66998347;
            height: 26px;
            width: 26px;
            background-size: 14px;
            background-position: center center;
            border-radius: 6px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512.005' height='292.933' viewBox='0 0 512.005 292.933'%3E%3Cpath d='M511%2C138.2c-3-13.8-11.2-23.1-25.2-27-15.3-4.3-28%2C.4-38.8%2C11.3q-62.85%2C63-125.5%2C126.2c-21%2C21-42.2%2C41.9-65.4%2C65L64.7%2C122.3c-16-16-38.8-16.9-53.6-2.8s-15%2C38%2C.6%2C53.7Q120%2C282.1%2C229%2C390.5c15.8%2C15.7%2C38%2C16.1%2C53.5.6Q392%2C282.35%2C500.7%2C173C510.2%2C163.4%2C514%2C151.6%2C511%2C138.2Z' transform='translate(0 -109.57)' fill='%2343745f'/%3E%3C/svg%3E");
        }

    .accordionHeaderInner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .accordion-body-container {
        border-top: 1px solid rgba(56, 133, 99, .25);
        padding: 10px;
    }

    .accordion-body {
        background: #ffffffd9;
        border-radius: 20px;
    }

    .module-menu-item {
        display: grid;
        grid-template-columns: 2fr 2fr auto;
        gap: 1rem;
        align-items: center;
        padding: 16px 16px;
        border-top: 1px solid #f1f3f5;
    }

        .module-menu-item:first-child {
            border-radius: 20px 20px 0 0;
        }

    .menu-info {
        min-width: 0;
    }

    .menu-route {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
        justify-content: flex-end;
    }
}

.accessModuleTitle {
    font-size: clamp(12px, 1vw, 16px);
    font-family: var(--font-semibold);
    margin: 0;
    color: #0f1f18;
}

.accessModuleCode {
    margin: 0;
    color: #43745f;
    padding: 3px 6px;
    border-radius: 6px;
    background: rgb(255 255 255);
    font-size: clamp(8px, 0.8vw, 12px);
    font-family: var(--font-medium);
}

    .accessModuleCode.greenCode {
        background: rgb(72 122 100 / 16%);
    }



.passRequirementContainer {
    padding: 15px;
    background: radial-gradient(circle at top left, rgba(56, 133, 99, .18), transparent 60%), radial-gradient(circle at bottom right, rgba(102, 194, 145, .12), transparent 60%), rgba(255, 255, 255, .03);
    border: 1px solid rgba(56, 133, 99, .20);
    border-radius: 15px;
}

.passRequirementTitle {
    font-size: clamp(10px, 1vw, 14px);
    font-family: var(--font-semibold);
    margin-bottom: 10px;
    color: #35866c;
}

.passRequirementMain {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.passRequirementList {
    font-size: clamp(10px, 1vw, 14px);
    font-family: var(--font-medium);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.passwordMatchHint {
    font-size: clamp(10px, 1vw, 14px);
    font-family: var(--font-medium);
}

.notesLabel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: radial-gradient(circle at top left, rgba(56, 133, 99, .18), transparent 60%), radial-gradient(circle at bottom right, rgba(102, 194, 145, .12), transparent 60%), rgba(255, 255, 255, .03);
}

    .notesLabel i {
        font-size: clamp(16px, 1.4vw, 20px);
        color: #4d886f;
        padding: 10px;
        background: #4c876d2e;
        border-radius: 6px;
    }

    .notesLabel span {
        font-family: var(--font-Regular);
        font-size: clamp(10px, 1vw, 14px);
        color: #4f8b70;
    }

    .notesLabel.orangeNotes {
        background: radial-gradient(circle at top left, rgba(230, 126, 34, .18), transparent 60%), radial-gradient(circle at bottom right, rgba(255, 183, 77, .14), transparent 60%), rgba(255, 255, 255, .03);
    }

        .notesLabel.orangeNotes i {
            color: #d8751f;
            background: rgba(230, 126, 34, .18);
        }

        .notesLabel.orangeNotes span {
            color: #c96f22;
        }

    .notesLabel.blueNotes {
        background: radial-gradient(circle at top left, rgba(52, 123, 235, .18), transparent 60%), radial-gradient(circle at bottom right, rgba(88, 166, 255, .14), transparent 60%), rgba(255, 255, 255, .03);
    }

        .notesLabel.blueNotes i {
            color: #347beb;
            background: rgba(52, 123, 235, .18);
        }

        .notesLabel.blueNotes span {
            color: #2f72d6;
        }


.noDataContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 100px 0;
    border: 1px solid rgba(51, 120, 89, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)), radial-gradient(circle at top right, rgba(56, 133, 99, 0.1), transparent 40%);
    border-radius: 20px;
    color: #4d886e;
}

    .noDataContainer i {
        font-size: 50px;
    }

    .noDataContainer span {
        font-family: var(--font-semibold);
    }




/*===========*/
.permissionCardBody {
    padding: 18px;
}

.permissionIntro {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    margin-bottom: 16px;
    border: 1px solid #d8e7df;
    border-radius: 10px;
    background: linear-gradient(135deg, #f6fbf8 0%, #dff0e9 100%);
    /*background: linear-gradient(135deg, #f6fbf8 0%, #ffffff 100%);*/
}

.permissionIntroWithAction {
    align-items: center;
    justify-content: space-between;
}

.permissionIntroLeft {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.permissionSelectAll {
    min-width: 100px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid #bde1ce;
    border-radius: 8px;
    background: #ffffffbd;
    color: #2f7d61;
    font-size: clamp(9px, 0.9vw, 13px);
    font-family: var(--font-semibold);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

    .permissionSelectAll:hover {
        border-color: #4f8f72b8;
        background: #f3faf6;
        box-shadow: 0 6px 16px rgba(79, 143, 114, 0.12);
    }

.permissionSelectAllInput {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

    .permissionSelectAllInput:checked {
        background-color: #4f8f72;
        border-color: #4f8f72;
    }

    .permissionSelectAllInput:indeterminate {
        background-color: #4f8f72;
        border-color: #4f8f72;
    }



.permissionIntroIcon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: #4f8f72;
    font-size: clamp(11px, 1vw, 15px);
}

.permissionIntroTitle {
    margin: 0;
    color: #10251d;
    font-size: clamp(11px, 1vw, 15px);
    font-family: var(--font-semibold);
}

.permissionIntroText {
    margin: 1px 0 0;
    color: #6f7f78;
    font-size: clamp(9px, 0.9vw, 13px);
    line-height: 1.4;
}

.permissionCategory {
    padding: 14px;
    border: 1px solid #dde7e2;
    border-radius: 12px;
    background: #ffffff;
}

    .permissionCategory + .permissionCategory {
        margin-top: 16px;
    }

.permissionCategoryHeader {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #2f7d61;
    font-size: clamp(11px, 1vw, 15px);
    font-family: var(--font-semibold);
}

    .permissionCategoryHeader i {
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: #ffffff;
        background: #4f8f72;
        font-size: clamp(9px, 0.9vw, 13px);
    }

.permissionCategoryGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}


.permissionGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.permissionTile {
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dde7e2;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

    .permissionTile:hover {
        border-color: #8fc6ad;
        box-shadow: 0 8px 20px rgba(35, 84, 65, 0.08);
    }

    .permissionTile:has(input:checked) {
        border-color: #4f8f72;
        background: #f3faf6;
        box-shadow: 0 8px 22px rgba(79, 143, 114, 0.12);
    }

    .permissionTile input {
        width: 17px;
        height: 17px;
        margin-top: 2px;
        border-color: #c8d6cf;
        cursor: pointer;
    }

        .permissionTile input:checked {
            background-color: #4f8f72;
            border-color: #4f8f72;
        }

.permissionTileContent {
    flex: 1;
    min-width: 0;
}

.permissionTileTitle {
    display: block;
    color: #10251d;
    font-size: clamp(10px, 1vw, 14px);
    font-family: var(--font-semibold);
    line-height: 1.25;
}

.permissionTileText {
    display: block;
    margin-top: 5px;
    color: #73827b;
    font-size: clamp(9px, 0.9vw, 13px);
    line-height: 1.35;
}

.field-validation-error {
    font-size: clamp(11px, 1vw, 14px);
}


/*===========*/
.portalHeader {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    margin: 0px;
    margin-bottom: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 120, 89, 0.12);
    position: sticky;
    top: -10px;
    z-index: 99;
}

    .portalHeader::before {
        content: "";
        position: absolute;
        top: -2px;
        right: 10px;
        width: 300px;
        height: 83px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(99, 102, 241, .12), transparent 50%);
        pointer-events: none;
    }


.portalHeaderRight {
    display: flex;
    align-items: center;
    gap: 12px;
}


.pageTitle {
    font-size: clamp(14px, 1.4vw, 22px);
    font-family: var(--font-semibold);
    color: #0f172a;
    margin: 0;
    margin-bottom: 2px;
}

    .pageTitle span {
        font-size: clamp(10px, 0.9vw, 13px);
    }

.pageSubTitle {
    color: #64748b;
    font-size: clamp(10px, 0.9vw, 13px);
}

.headerIconBtn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #7b68ff;
    background: linear-gradient( 135deg, rgba(255,255,255,.9), rgba(248,250,252,.8) );
    border: 1px solid rgba(226,232,240,.8);
    cursor: pointer;
    transition: .25s;
    position: relative;
}

    .headerIconBtn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(59,130,246,.15);
    }

.notificationBadge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient( 135deg, #ef4444, #f97316 );
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(239,68,68,.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239,68,68,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239,68,68,0);
    }
}

.profileButton {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: rgba(255, 255, 255, .7);
    border-radius: 6px;
    padding: 0px;
    transition: .25s;
}

    .profileButton:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(59,130,246,.12);
    }

.profileAvatar {
    width: 42px;
    height: 42px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1vw, 16px);
    font-family: var(--font-semibold);
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 18px rgba(99, 102, 241, .3);
}


.profileDropdown {
    position: relative;
}

.profileDropdownMenu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: rgba(255,255,255, 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(226,232,240,.8);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15,23,42,.12), 0 8px 20px rgba(15,23,42,.08);
    opacity: 0;
    visibility: hidden;
    padding: 10px 10px;
    transform: translateY(-8px);
    transition: all .22s ease;
    z-index: 9999;
}

.profileDropdown.open .profileDropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*.profileDropdown.open .profileDropdownArrow {
    transform: rotate(180deg);
}*/

.profileDropdownHeader {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    background: linear-gradient(135deg, rgb(232 237 255 / 95%), rgba(255, 255, 255, .95));
    border-radius: 12px;
}

.profileDropdownAvatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(14px, 1vw, 16px);
    font-family: var(--font-semibold);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.profileDropdownName {
    font-size: clamp(12px, 0.9vw, 14px);
    font-family: var(--font-semibold);
    color: #0f172a;
}

.profileDropdownRole {
    font-size: clamp(11px, 0.8vw, 12px);
    color: #64748b;
    margin-top: 2px;
}

.profileDropdownDivider {
    height: 1px;
    background: #eef2f7;
}

.profileDropdownItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    font-size: clamp(12px, 0.9vw, 14px);
    color: #475569;
}

    .profileDropdownItem i {
        width: 18px;
        color: #64748b;
    }

.profileDropdownLogout {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 600;
    color: #dc2626;
    cursor: pointer;
    transition: all .2s ease;
}

    .profileDropdownLogout:hover {
        background: linear-gradient(135deg, rgba(254,242,242,.95), rgba(255,255,255,.95));
    }

    .profileDropdownLogout i {
        width: 18px;
    }

.profileDropdownArrow {
    transition: transform .2s ease;
}

.notifPanel {
    position: absolute;
    top: 75px;
    right: 0;
    width: 420px;
    max-width: calc(100vw - 30px);
    background: rgba(255,255,255, 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 24px 60px rgba(15,23,42,.12), 0 8px 24px rgba(15,23,42,.08);
    animation: notifPanelShow .22s ease;
}

@keyframes notifPanelShow {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(1);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notifPanelHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient( 180deg, rgba(248,250,252,.95) 0%, rgba(255,255,255,.92) 100% );
}

.notifPanelTitleWrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.notifPanelTitle {
    margin: 0;
    font-size: clamp(13px, 0.9vw, 15px);
    font-family: var(--font-semibold);
    color: #0f172a;
}

.notifPanelCount {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
}

.notifMarkReadBtn {
    border: none;
    background: transparent;
    font-size: clamp(11px, 0.8vw, 12px);
    font-weight: 600;
    color: #2563eb;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all .2s ease;
}

    .notifMarkReadBtn:hover {
        background: #eff6ff;
    }

.notifList {
    max-height: 420px;
    overflow-y: auto;
    padding: 8px;
}


/*--------*/
.notifItem {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
}

    .notifItem:hover {
        background: linear-gradient( 135deg, rgba(37,99,235,.05), rgba(99,102,241,.04) );
        transform: translateY(-1px);
    }

    .notifItem + .notifItem {
        margin-top: 4px;
    }


.notifContent {
    flex: 1;
}

.notifHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.notifTitle {
    flex: 1;
    font-size: clamp(12px, 0.9vw, 13px);
    font-family: var(--font-semibold);
    color: #0f172a;
    line-height: 1.4;
}

.notifMessage {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin-top: 2px;
}

.notifTime {
    flex-shrink: 0;
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
}


.notifIcon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(99,102,241,.12));
    color: #4f46e5;
}


.notifItem.unread .notifTitle {
    font-family: var(--font-bold);
    color: #0f172a;
}

.notifItem.unread .notifIcon {
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    color: white;
}

/*===No notification===*/
.notifEmpty {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
}

    .notifEmpty i {
        font-size: 28px;
        opacity: .6;
    }

    .notifEmpty span {
        font-size: 13px;
    }

.notifList::-webkit-scrollbar {
    width: 6px;
}

.notifList::-webkit-scrollbar-track {
    background: transparent;
}

.notifList::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

    .notifList::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }


/*========Liecence health========*/
.dashboardPanel.tenantChartPanel {
    margin-bottom: 10px;
    box-shadow: none;
}

.licenseHealthBody {
    padding: 16px 18px 18px;
}

.licenseMetricGrid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.licenseMetricCard {
    position: relative;
    display: flex;
    min-height: 126px;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: radial-gradient(circle at top right, var(--license-glow), transparent 58%), rgba(255, 255, 255, 0.74);
    color: #1f2937;
    text-decoration: none;
    /*box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);*/
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

    .licenseMetricCard::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 3px;
        background: var(--license-accent);
        opacity: 0.9;
    }

    .licenseMetricCard:hover {
        transform: translateY(-3px);
        border-color: color-mix(in srgb, var(--license-accent) 38%, transparent);
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
    }

    .licenseMetricCard:focus-visible,
    .licenseHealthViewAll:focus-visible {
        outline: 3px solid rgba(37, 99, 235, 0.24);
        outline-offset: 3px;
    }

.licenseMetricIcon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--license-accent) 22%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--license-accent) 10%, white);
    color: var(--license-accent);
    font-size: clamp(12px, 0.9vw, 14px);
}

.licenseMetricCardInner {
    display: flex;
    flex-direction: column;
}

.licenseMetricValue {
    margin-top: 0px;
    color: var(--license-accent);
    font-size: clamp(24px, 1.8vw, 28px);
    font-family: var(--font-semibold);
    line-height: 1;
    letter-spacing: 0;
}

.licenseMetricLabel {
    margin-top: 8px;
    color: #334155;
    font-size: clamp(12px, 0.9vw, 14px);
    font-family: var(--font-semibold);
    line-height: 1.2;
}

.licenseMetricMeta {
    margin-top: 4px;
    color: #7c8798;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-medium);
    line-height: 1.3;
}

.licenseMetricCard.is-active {
    --license-accent: #15915f;
    --license-glow: rgba(21, 145, 95, 0.14);
}

.licenseMetricCard.is-grace {
    --license-accent: #d99a00;
    --license-glow: rgba(245, 158, 11, 0.16);
}

.licenseMetricCard.is-expired {
    --license-accent: #e73245;
    --license-glow: rgba(231, 50, 69, 0.14);
}

.licenseMetricCard.is-deactivated {
    --license-accent: #687280;
    --license-glow: rgba(100, 116, 139, 0.13);
}

.licenseMetricCard.is-pending {
    --license-accent: #0f73ff;
    --license-glow: rgba(15, 115, 255, 0.13);
}

.licenseMetricCard.is-unprovisioned {
    --license-accent: #222a35;
    --license-glow: rgba(15, 23, 42, 0.08);
}

.licenseExpiryWatch {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgb(65 153 128 / 14%);
    border-radius: 16px;
    background: linear-gradient(135deg, rgb(90 147 124 / 10%), rgba(255, 255, 255, 0.72)), rgba(255, 255, 255, 0.68);
    /*box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);*/
}

.expiryWatchHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

    .expiryWatchHeader strong {
        display: block;
        color: #172033;
        font-size: clamp(13px, 0.9vw, 15px);
        font-family: var(--font-semibold);
    }

.expiryWatchEyebrow {
    display: block;
    margin-bottom: 3px;
    color: #589d7f;
    font-size: clamp(9px, 0.7vw, 11px);
    font-family: var(--font-semibold);
    letter-spacing: 0;
    text-transform: uppercase;
}

.expiryWatchBadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgb(61 151 122 / 16%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: #4ba57c;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-semibold);
}

.expiryMetricGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.expiryMetricCard {
    position: relative;
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    transition: all 0.2s linear;
}

    .expiryMetricCard::after {
        content: "";
        position: absolute;
        right: 14px;
        top: 14px;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--expiry-accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--expiry-accent) 14%, transparent);
    }

    .expiryMetricCard:hover {
        transform: translateY(-3px);
    }

        .expiryMetricCard:hover::after {
            animation: expirationPulseBadge 2s infinite;
        }

@keyframes expirationPulseBadge {
    0% {
        box-shadow: 0 0 0 0px color-mix(in srgb, var(--expiry-accent) 50%, transparent);
    }

    70% {
        box-shadow: 0 0 0 8px color-mix(in srgb, var(--expiry-accent) 0%, transparent);
    }

    100% {
        box-shadow: 0 0 0 0px color-mix(in srgb, var(--expiry-accent) 0%, transparent);
    }
}


.expiryMetricValue {
    display: block;
    color: var(--expiry-accent);
    font-size: clamp(18px, 1.5vw, 22px);
    font-family: var(--font-semibold);
    line-height: 1;
}

.expiryMetricLabel {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: clamp(11px, 0.9vw, 13px);
    font-family: var(--font-medium);
}

.expiryMetricCard.is-urgent {
    --expiry-accent: #e73245;
}

.expiryMetricCard.is-warning {
    --expiry-accent: #d99a00;
}

.expiryMetricCard.is-info {
    --expiry-accent: #0891b2;
}


/*==========Liecence destribution===========*/

.licenseAnalyticsGrid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.45fr);
    gap: 12px;
    padding: 16px;
}

.licenseAnalyticsCard {
    position: relative;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 42%), linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.72));
    /*box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);*/
    backdrop-filter: blur(14px);
}

.licenseChartHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.licenseChartTitle {
    color: #172033;
    font-size: clamp(13px, 0.9vw, 15px);
    font-family: var(--font-semibold);
    line-height: 1.2;
}

.licenseChartSubtitle {
    margin-top: 4px;
    color: #7c8798;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-medium);
    line-height: 1.35;
}

.licenseChartBadge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #475569;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-semibold);
    white-space: nowrap;
}

.licenseChartWrapper {
    position: relative;
    height: 270px;
}

.licenseTrendCanvasWrap {
    position: relative;
    height: 270px;
}

.licenseChartEmptyState {
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 28px;
    border: 1px dashed rgba(15, 23, 42, 0.16);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.78);
    color: #64748b;
    text-align: center;
}

    .licenseChartEmptyState i {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(20, 184, 166, 0.12);
        color: #0f766e;
        font-size: 17px;
    }

    .licenseChartEmptyState strong {
        color: #334155;
        font-size: 14px;
        font-weight: 800;
    }


/*=======Tenant chart=========*/
.tenantAnalyticsBody {
    padding: 16px;
}


.tenantTopNBar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tenantTopNLabel {
    margin-right: 2px;
    color: #7c8798;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-medium);
}

.tenantTopNBtn {
    min-height: 32px;
    padding: 0 13px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #475569;
    font-size: clamp(11px, 0.8vw, 13px);
    font-family: var(--font-medium);
    line-height: 1;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .tenantTopNBtn:hover {
        transform: translateY(-1px);
        border-color: rgb(36 124 255 / 30%);
        background: rgb(240 244 253 / 90%);
        color: #1677ff;
    }

    .tenantTopNBtn.active {
        border-color: rgb(40 136 255 / 35%);
        background: #1677ff;
        color: #ffffff;
    }

    .tenantTopNBtn:focus-visible,
    .tableIconButton:focus-visible {
        outline: 3px solid rgba(37, 99, 235, 0.24);
        outline-offset: 3px;
    }

.tenantChartWrapper {
    position: relative;
    min-height: 260px;
    padding: 8px 4px 0;
}

.tenantChartLoading {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed rgba(15, 23, 42, 0.14);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.76);
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.tenantRankBadge {
    display: inline-flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #1677ff;
    color: #ffffff;
    font-size: clamp(10px, 0.8vw, 13px);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(22, 119, 255, 0.18);
}

    .tenantRankBadge.rank-1 {
        background: linear-gradient(135deg, #f59e0b, #f97316);
    }

    .tenantRankBadge.rank-2 {
        background: linear-gradient(135deg, #94a3b8, #64748b);
    }

    .tenantRankBadge.rank-3 {
        background: linear-gradient(135deg, #b45309, #92400e);
    }

.tenantMiniBar {
    display: flex;
    width: min(100%, 420px);
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}

    .tenantMiniBar span {
        display: block;
        min-width: 2px;
        height: 100%;
    }

.tenantEmptyState {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(15, 23, 42, 0.16);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.78);
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.tenantOrgCell {
    color: #1f2937;
    font-weight: 800;
}

.tenantTotalCell {
    color: #172033;
    text-align: center;
    font-weight: 800;
}

.tenantMiniBarOpen {
    background: #f59e0b;
}

.tenantMiniBarProgress {
    background: #3b82f6;
}

.tenantMiniBarResolved {
    background: #10b981;
}

.tenantMiniBarClosed {
    background: #64748b;
}


/*========insight section==============*/
.adminInsightGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

    .adminInsightGrid .insightPanel {
        min-width: 0;
        min-height: 260px;
        padding: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 16px;
        background: radial-gradient(circle at top right, rgba(21, 145, 95, 0.07), transparent 42%), linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.72));
        /*box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);*/
        backdrop-filter: blur(14px);
    }

.insightPanelHeader,
.insightPanelTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.insightPanelTitle {
    color: #172033;
    font-size: clamp(11px, 1.1vw, 15px);
    font-family: var(--font-semibold);
    line-height: 1.25;
}

.insightPanelSubtitle {
    margin-top: 4px;
    color: #7c8798;
    font-size: clamp(9px, 0.9vw, 12px);
    font-weight: 600;
}

.insightChartFrame {
    position: relative;
    height: 205px;
    margin-top: 14px;
}

.severityChartFrame {
    height: 245px;
}

.pendingBadge {
    display: inline-flex;
    min-width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 999px;
    background: rgba(239, 246, 255, 0.9);
    color: #2563eb;
    font-size: clamp(11px, 0.8vw, 13px);
    font-family: var(--font-semibold);
}

#pendingReviewList,
#pendingCallList {
    margin-top: 8px;
}

.insightListItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

    .insightListItem:last-child {
        border-bottom: 0;
    }

.insightListPrimary {
    color: #1f2937;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 800;
}

.insightListMeta {
    margin-top: 3px;
    color: #7c8798;
    font-size: clamp(10px, 0.8vw, 12px);
    font-weight: 600;
}

.adoptionRow {
    display: grid;
    grid-template-columns: minmax(90px, auto) minmax(120px, 1.4fr) minmax(88px, auto);
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.adoptionName {
    color: #334155;
    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 700;
}

.adoptionValue {
    color: #64748b;
    font-size: clamp(10px, 0.8vw, 12px);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.adoptionBarTrack {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}

.adoptionBarFill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1677ff, #14b8a6);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42) inset;
    transition: width 450ms ease;
}

.securityStatRow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.securityStatCard {
    position: relative;
    min-height: 94px;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

    .securityStatCard:hover {
        transform: translateY(-2px);
        border-color: rgba(21, 145, 95, 0.22);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    }

    .securityStatCard.hasIssues {
        border-color: rgba(239, 68, 68, 0.22);
        background: linear-gradient(180deg, rgba(254, 242, 242, 0.78), rgba(255, 255, 255, 0.7));
    }

        .securityStatCard.hasIssues::after {
            content: "";
            position: absolute;
            top: 14px;
            right: 14px;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #ef4444;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
        }

    .securityStatCard .stat-value {
        color: #172033;
        font-size: clamp(22px, 1.9vw, 26px);
        font-family: var(--font-bold);
        line-height: 1;
    }

    .securityStatCard.hasIssues .stat-value {
        color: #dc2626;
    }

    .securityStatCard .stat-label {
        margin-top: 8px;
        color: #64748b;
        font-size: clamp(10px, 0.8vw, 12px);
        font-family: var(--font-semibold);
        line-height: 1.35;
    }

.insightEmptyState,
.adminInsightGrid .text-muted.small {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    color: #7c8798;
    font-size: clamp(11px, 0.8vw, 13px);
    font-family: var(--font-medium);
}


/*======================*/
.videoCallRequestSection {
    overflow: hidden;
}

    .videoCallRequestSection .detailSectionHeader {
        border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    }

.detailSectionIcon.callIcon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(21, 145, 95, 0.16);
    border-radius: 10px;
    background: rgba(240, 253, 248, 0.86);
    color: #237a5d;
}

.videoCallRequestBody {
    display: grid;
    gap: 16px;
    padding: 16px 18px 18px;
}

.videoCallStateCard,
.videoCallRequestPrompt {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: radial-gradient(circle at top right, rgba(21, 145, 95, 0.08), transparent 40%), rgba(255, 255, 255, 0.78);
    /*box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);*/
}

    .videoCallStateCard.is-pending {
        border-color: rgb(11 146 108 / 20%);
        background: linear-gradient(135deg, rgb(236 245 255 / 86%), rgba(255, 255, 255, 0.78)), rgba(255, 255, 255, 0.82);
    }

    .videoCallStateCard.is-accepted {
        border-color: rgba(21, 145, 95, 0.2);
        background: linear-gradient(135deg, rgb(240 253 249 / 90%), rgba(255, 255, 255, 0.78)), rgba(255, 255, 255, 0.82);
    }

.videoCallStateIcon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgb(222 240 233);
    color: #237a5d;
    font-size: 15px;
}

.videoCallStateCard.is-pending .videoCallStateIcon {
    background: rgb(207 226 254 / 80%);
    color: #2076ce;
}

.videoCallStateCard.is-accepted .videoCallStateIcon {
    background: rgb(197 232 219 / 90%);
    color: #167c64;
}

.videoCallStateContent {
    min-width: 0;
}

    .videoCallStateContent strong {
        display: block;
        color: #172033;
        font-size: 14px;
        font-weight: 850;
        line-height: 1.25;
    }

    .videoCallStateContent span {
        display: block;
        margin-top: 3px;
        color: #64748b;
        font-size: 12px;
        font-weight: 600;
    }


.videoCallCancelForm {
    display: inline-flex;
    margin: 0;
}

.videoCallHistoryBlock {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.videoCallHistoryHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 250, 252, 0.72);
}

    .videoCallHistoryHeader strong {
        color: #172033;
        font-size: 14px;
        font-weight: 850;
    }

    .videoCallHistoryHeader span {
        display: inline-flex;
        min-height: 24px;
        align-items: center;
        padding: 0 9px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
    }

.detailContainerTableWrap {
    max-height: 260px;
    overflow: auto;
}

.detailContainerTable {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

    .detailContainerTable thead th {
        position: sticky;
        top: 0;
        z-index: 1;
        padding: 11px 14px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(248, 250, 252, 0.96);
        color: #738092;
        font-size: 11px;
        font-weight: 850;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .detailContainerTable tbody td {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        color: #334155;
        font-size: 13px;
        font-weight: 600;
        vertical-align: middle;
    }

    .detailContainerTable tbody tr:last-child td {
        border-bottom: 0;
    }

    .detailContainerTable tbody tr:hover {
        background: rgba(240, 253, 248, 0.46);
    }

.videoCallStatusBadge {
    display: inline-flex;
    min-height: 23px;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
}

    .videoCallStatusBadge[data-status="Pending"] {
        border: 1px solid rgba(8, 145, 178, 0.2);
        background: rgba(207, 250, 254, 0.86) !important;
        color: #0e7490 !important;
    }

    .videoCallStatusBadge[data-status="Accepted"] {
        border: 1px solid rgba(21, 145, 95, 0.2);
        background: rgba(220, 252, 231, 0.9) !important;
        color: #15803d !important;
    }

    .videoCallStatusBadge[data-status="Rejected"] {
        border: 1px solid rgba(239, 68, 68, 0.18);
        background: rgba(254, 226, 226, 0.9) !important;
        color: #dc2626 !important;
    }

    .videoCallStatusBadge[data-status="Cancelled"],
    .videoCallStatusBadge[data-status="Canceled"] {
        border: 1px solid rgba(100, 116, 139, 0.18);
        background: rgba(241, 245, 249, 0.92) !important;
        color: #64748b !important;
    }

.videoCallNoteCell {
    max-width: 520px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*======================*/

.pendingCallRequestBody {
    display: grid;
    gap: 12px;
}

.callRequestCard {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgb(245 108 11 / 16%);
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(255 244 235 / 72%), rgba(255, 255, 255, 0.84)), rgba(255, 255, 255, 0.82);
    /*box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);*/
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .callRequestCard:hover {
        transform: translateY(-1px);
        border-color: rgba(245, 158, 11, 0.3);
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    }

.callRequestAvatar {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 12px;
    background: rgba(255, 247, 237, 0.9);
    color: #d97706;
    font-size: 15px;
}

.callRequestInfo {
    min-width: 0;
}

.callRequestMainLine {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    color: #334155;
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.35;
}

    .callRequestMainLine strong {
        color: #172033;
        font-family: var(--font-bold);
    }

.callRequestTime {
    margin-left: 4px;
    color: #7c8798;
    font-size: clamp(11px, 0.8vw, 12px);
    font-weight: 600;
}

.callRequestNote {
    margin: 9px 0 10px;
    max-width: 800px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #475569;
    font-size: clamp(11px, 0.9vw, 13px);
    font-weight: 600;
    line-height: 1.45;
}

.callRequestStatusBadge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    background: rgba(254, 243, 199, 0.9) !important;
    color: #92400e !important;
    font-size: 11px;
    font-weight: 800;
}

.callRequestActions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 2px;
}


.callHistoryList {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.callHistoryItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
    border-bottom: 1px solid rgba(51, 120, 89, 0.1);
    transition: background-color 0.15s ease;
}

    .callHistoryItem:last-child {
        border-bottom: none;
    }

    .callHistoryItem:hover {
        background-color: #f6f9f7;
        border-radius: 8px;
        border: 1px solid rgba(51, 120, 89, 0.1);
    }

.callHistoryContent {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.callHistoryIcon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f3ec;
    color: #1f7a4d;
}

    .callHistoryIcon i {
        font-size: clamp(14px, 1.1vw, 18px);
    }

.callHistoryText {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.35;
}

.callHistoryPrimary {
    font-size: clamp(12px, 0.9vw, 14px);
    font-family: var(--font-semibold);
    color: #1f2d27;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.callHistorySecondary {
    font-size: clamp(10px, 0.8vw, 12px);
    color: #7c8a84;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.callHistoryActions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.callDurationBadge {
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-semibold);
    color: #2f6f52;
    background-color: #eaf5ee;
    border: 1px solid #d6ead9;
    border-radius: 20px;
    padding: 2px 10px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}



.reviewDetailsPanel {
    overflow: hidden;
    margin-bottom: 0;
}

.reviewDetailsBody {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.reviewHeroBlock {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: radial-gradient(circle at top right, rgba(21, 145, 95, 0.08), transparent 42%), rgba(255, 255, 255, 0.78);
}

.reviewEyebrow {
    display: block;
    margin-bottom: 5px;
    color: #237a5d;
    font-size: clamp(9px, 0.8vw, 11px);
    font-family: var(--font-semibold);
    letter-spacing: 0;
    text-transform: uppercase;
}

.reviewTitle {
    margin: 0;
    color: #172033;
    font-size: clamp(14px, 1.2vw, 18px);
    font-family: var(--font-semibold);
    line-height: 1.1;
}

.reviewHeroBadge {
    white-space: nowrap;
}

.reviewTextBlock,
.reviewAuditBlock {
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.reviewTextBlock {
    box-shadow: inset 3px 0 0 rgb(21 145 95 / 70%);
}

.reviewText {
    margin: 8px 0 0;
    color: #334155;
    font-size: clamp(12px, 0.9vw, 14px);
    font-family: var(--font-semibold);
    line-height: 1.65;
}

.reviewIdentityGrid {
    gap: 10px;
}

.reviewInfoCard,
.reviewSummaryCard {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.64));
    /*box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);*/
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

    .reviewInfoCard:hover,
    .reviewSummaryCard:hover {
        transform: translateY(-1px);
        border-color: rgba(21, 145, 95, 0.2);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
    }

.reviewDetailsLayout .detailGridItemInner {
    color: #7c8798;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-semibold);
    letter-spacing: 0;
    text-transform: uppercase;
}

    .reviewDetailsLayout .detailGridItemInner i {
        color: #8a94a6;
    }

.reviewDetailsLayout .detailLabel {
    color: #7c8798;
    font-size: clamp(9px, 0.8vw, 11px);
    font-family: var(--font-semibold);
    letter-spacing: 0;
    text-transform: uppercase;
}

.reviewDetailsLayout .detailValue {
    color: #1f2937;
    font-size: clamp(11px, 0.9vw, 13px);
    line-height: 1.45;
}

.reviewDetailsLayout .detailLink {
    display: inline-flex;
    max-width: 100%;
    overflow: hidden;
    color: #237a5d;
    font-size: clamp(11px, 0.9vw, 13px);
    font-family: var(--font-semibold);
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
}

.reviewAuditBlock {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.86), rgba(255, 255, 255, 0.72));
}

    .reviewAuditBlock.is-rejected {
        border-color: rgba(239, 68, 68, 0.18);
        background: linear-gradient(135deg, rgba(254, 242, 242, 0.84), rgba(255, 255, 255, 0.72));
    }

.reviewAdminNote {
    margin: 8px 0 0;
    font-size: clamp(11px, 0.9vw, 13px);
    font-family: var(--font-medium);
    line-height: 1.55;
}

.reviewAuditGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.reviewSummaryRail {
    gap: 10px;
}

.reviewSummaryCard {
    min-height: 88px;
    padding: 14px;
}

    .reviewSummaryCard .detailLabel {
        display: block;
        margin-bottom: 9px;
    }

.reviewRatingCard {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 44%), rgba(255, 255, 255, 0.76);
}

.reviewRatingValue {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

    .reviewRatingValue .text-warning {
        color: #f5b301 !important;
        filter: drop-shadow(0 2px 4px rgba(245, 179, 1, 0.18));
    }

    .reviewRatingValue .text-muted {
        color: #989fa8 !important;
    }

    .reviewRatingValue i {
        font-size: clamp(12px, 1vw, 16px);
    }

.reviewDetailsLayout .detailBadge {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    font-size: clamp(9px, 0.8vw, 11px);
    font-family: var(--font-semibold);
}


.licenseInfoPanel {
    background-color: #ffffff;
    border: 1px solid #edf1ef;
    border-radius: 0px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(16, 24, 21, 0.04);
}

.licenseInfoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.licenseInfoTile {
    padding: 14px 14px;
    background: linear-gradient(135deg, rgba(140, 187, 221, .12) 0%, rgba(230, 242, 250, .42) 55%, rgba(255, 255, 255, .72) 100%);
    border-radius: 14px;
    border: 1px solid #cee0ed;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.2s linear;
    margin: 0 !important;
}

    .licenseInfoTile:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, rgba(120,176,216,.18) 0%, rgba(210,235,248,.52) 55%, rgba(255,255,255,.82) 100%);
    }


.licenseInfoTileHeader {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7c8a84;
}

    .licenseInfoTileHeader i {
        font-size: clamp(11px, 0.9vw, 13px);
        width: 16px;
        text-align: center;
        color: #4384e5;
    }

    .licenseInfoTileHeader label {
        font-size: clamp(10px, 0.8vw, 11px);
        font-family: var(--font-semibold);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #7c8a84;
        margin: 0;
    }

.licenseInfoValue {
    font-size: clamp(11px, 0.9vw, 13px);
    font-family: var(--font-semibold);
    color: #1a2b23;
    line-height: 1.4;
}

.licenseInfoSubNote {
    font-weight: 400;
    margin-top: 2px;
}

.licenseInfoTile .badge {
    font-size: clamp(10px, 0.8vw, 11px);
    font-family: var(--font-semibold);
    padding: 5px 12px;
    border-radius: 20px;
}


/*=======Alert Theme=========*/
.premiumAlert {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all .28s ease;
    isolation: isolate;
}

    .premiumAlert::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255,255,255,.30), rgba(255,255,255,0) );
        pointer-events: none;
    }

    .premiumAlert::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        border-radius: 0 8px 8px 0;
    }

.premiumAlertIcon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(14px, 1.1vw, 18px);
    backdrop-filter: blur(12px);
    transition: .25s;
}

.premiumAlertMessage {
    font-size: clamp(11px, 0.9vw, 14px);
    line-height: 1.65;
    font-family: var(--font-medium);
}

    .premiumAlertMessage strong {
        font-family: var(--font-semibold);
    }

.premiumAlert:hover {
    transform: translateY(-2px);
}


/*====*/
.alert-success.premiumAlert {
    color: #14532d;
    background: linear-gradient( 135deg, rgba(34,197,94,.10), rgba(240,253,244,.88), rgba(255,255,255,.95) );
    border-color: rgba(34,197,94,.18);
}

    .alert-success.premiumAlert::after {
        background: linear-gradient( to bottom, #22c55e, #16a34a );
    }

.alert-success .premiumAlertIcon {
    color: white;
    background: linear-gradient( 135deg, #22c55e, #16a34a );
    box-shadow: 0 8px 20px rgba(34,197,94,.28);
}

/*=====*/
.alert-warning.premiumAlert {
    color: #92400e;
    background: linear-gradient( 135deg, rgba(251,191,36,.12), rgba(255,251,235,.92), rgba(255,255,255,.95) );
    border-color: rgba(245,158,11,.18);
}

    .alert-warning.premiumAlert::after {
        background: linear-gradient( to bottom, #f59e0b, #d97706 );
    }

.alert-warning .premiumAlertIcon {
    background: linear-gradient( 135deg, #f59e0b, #d97706 );
    color: white;
    box-shadow: 0 8px 20px rgba(245,158,11,.25);
}

/*=======*/
.alert-danger.premiumAlert {
    color: #991b1b;
    background: linear-gradient( 135deg, rgba(239,68,68,.10), rgba(254,242,242,.92), rgba(255,255,255,.95) );
    border-color: rgba(239,68,68,.18);
}

    .alert-danger.premiumAlert::after {
        background: linear-gradient( to bottom, #ef4444, #dc2626 );
    }

.alert-danger .premiumAlertIcon {
    background: linear-gradient( 135deg, #ef4444, #dc2626 );
    color: white;
    box-shadow: 0 8px 20px rgba(239,68,68,.25);
}

/*=====*/
.alert-info.premiumAlert {
    color: #1e3a8a;
    background: linear-gradient( 135deg, rgba(59,130,246,.10), rgba(239,246,255,.92), rgba(255,255,255,.95) );
    border-color: rgba(59,130,246,.18);
}

    .alert-info.premiumAlert::after {
        background: linear-gradient( to bottom, #3b82f6, #2563eb );
    }

.alert-info .premiumAlertIcon {
    background: linear-gradient( 135deg, #3b82f6, #2563eb );
    color: white;
    box-shadow: 0 8px 20px rgba(59,130,246,.25);
}



/*========*/
.reviewEditorSection {
    overflow: hidden;
}

.reviewEditorLayout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 400px;
    gap: 28px;
    align-items: start;
}

.reviewFormCard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 4px 4px;
}

.reviewActionBar {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
}

.reviewFooter {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewCounter {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: clamp(10px, 0.8vw, 12px);
    font-family: var(--font-medium);
}

.ratingField {
    padding-bottom: 4px;
}


.reviewCounter {
    background: linear-gradient( 135deg, rgba(140,187,221,.18), rgba(255,255,255,.88) );
    border: 1px solid rgba(140,187,221,.22);
    color: #527892;
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: .25s;
}

.reviewTextarea:focus + .reviewFooter .reviewCounter {
    background: linear-gradient( 135deg, rgba(140,187,221,.30), rgba(255,255,255,.96) );
}

.star-picker {
    display: flex;
    align-items: center;
    gap: 0px;
}

.star-icon {
    position: relative;
    font-size: clamp(20px, 1.8vw, 28px);
    padding-right: 4px;
    cursor: pointer;
    transition: transform .18s, color .18s, filter .18s;
}

    .star-icon:hover {
        transform: translateY(-3px) scale(1.08);
        filter: drop-shadow( 0 8px 16px rgba(245,158,11,.30) );
    }

    .star-icon.fas {
        color: #f59e0b !important;
        filter: drop-shadow( 0 4px 8px rgba(245,158,11,.20) );
    }

    .star-icon.far {
        color: #d6dce5 !important;
    }

/*.fieldContainer:not(:last-child) {
    padding-bottom: 2px;
}*/


.reviewTipsCard {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92) 0%, rgba(248, 251, 254, .96) 45%, rgba(140, 187, 221, .10) 100%);
    border: 1px solid rgba(140, 187, 221, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .06), inset 0 1px 0 rgba(255, 255, 255, .75);
    transition: all .30s ease;
}

    .reviewTipsCard::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -110px;
        right: -90px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(140,187,221,.18), transparent 70% );
        pointer-events: none;
    }

    .reviewTipsCard::after {
        content: "";
        position: absolute;
        left: -80px;
        bottom: -90px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(52,119,185,.08), transparent 70% );
        pointer-events: none;
    }

    .reviewTipsCard:hover {
        transform: translateY(-4px);
        border-color: rgba(140,187,221,.30);
        box-shadow: 0 28px 55px rgba(52,119,185,.12), inset 0 1px 0 rgba(255,255,255,.9);
    }

.reviewTipsHeader {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tipsIcon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2f6f9c;
    font-size: clamp(16px, 1.4vw, 20px);
    background: linear-gradient(135deg, rgba(140, 187, 221, .22), rgba(255, 255, 255, .95));
    border: 1px solid rgba(140, 187, 221, .20);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 8px 18px rgba(140, 187, 221, .14);
}

.reviewTipsTitle {
    font-size: clamp(14px, 1.2vw, 18px);
    font-family: var(--font-semibold);
    color: #1f2937;
}

.reviewTipsSubtitle {
    margin-top: 2px;
    font-size: clamp(10px, 0.9vw, 13px);
    color: #6b7280;
}

.tipsList {
    display: grid;
    gap: 8px;
}

.tipItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(140, 187, 221, .08));
    border: 1px solid rgba(140, 187, 221, .12);
    transition: .25s;
}

    .tipItem:hover {
        transform: translateX(4px);
        background: linear-gradient( 135deg, rgba(255,255,255,.95), rgba(140,187,221,.15) );
    }

    .tipItem i {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: clamp(11px, 0.8vw, 12px);
        background: linear-gradient(135deg, #22c55e, #16a34a);
        box-shadow: 0 6px 12px rgba(34, 197, 94, .25);
    }

    .tipItem span {
        color: #334155;
        font-size: clamp(10px, 0.9vw, 14px);
        font-family: var(--font-medium);
    }

.tipsNote {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(255, 255, 255, .92));
    border: 1px solid rgba(59, 130, 246, .12);
}

    .tipsNote i {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
        background: white;
        flex-shrink: 0;
    }

    .tipsNote span {
        color: #475569;
        line-height: 1.75;
        font-size: clamp(10px, 0.9vw, 13px);
    }

    .tipsNote strong {
        color: #1e40af;
    }

.reviewActionBar {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}



/*=======Client Detail========*/
.clientProfileCard {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.clientProfileTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clientProfileInfo {
    display: flex;
    align-items: center;
    gap: 18px;
}

.clientAvatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    /*background: linear-gradient(135deg,#4f8d74,#6ea88d);*/
    background: linear-gradient(135deg, #5fc4ff, #3a80ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(22px, 1.8vw, 26px);
    font-family: var(--font-semibold);
    box-shadow: 0 10px 24px rgba(74,123,97,.18);
}

.clientIdentity h3 {
    margin: 0;
    font-size: clamp(16px, 1.4vw, 20px);
    font-family: var(--font-semibold);
    color: #23343b;
}

.clientIdentity p {
    margin: 4px 0 0;
    color: #6d7d86;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1vw, 16px);
}

.badge.statusBadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: clamp(12px, 0.9vw, 14px);
    font-family: var(--font-semibold);
}

.statusBadge.active {
    background: rgba(22,163,74,.12);
    color: #15803d;
}

.clientInfoGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.clientInfoItem,
.clientAddress {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e6edf2;
    overflow: hidden;
    transition: all .25s ease;
}

    .clientInfoItem::before,
    .clientAddress::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        border-radius: 20px;
        transition: .25s;
    }

    .clientInfoItem::after,
    .clientAddress::after {
        content: "";
        position: absolute;
        right: -12px;
        top: -12px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(44px);
    }

    .clientInfoItem:hover,
    .clientAddress:hover {
        transform: translateY(-3px);
        /*box-shadow: 0 14px 28px rgba(30,41,59,.08);*/
    }


    .clientInfoItem:nth-child(1)::before {
        background: #3b82f6;
    }

    .clientInfoItem:nth-child(1)::after {
        background: color-mix(in srgb, rgba(15, 115, 255, 0.15) 100%, transparent);
    }

    .clientInfoItem:nth-child(1) .infoIcon {
        background: rgba(59,130,246,.10);
        color: #2563eb;
    }



    .clientInfoItem:nth-child(2)::before {
        background: #8b5cf6;
    }

    .clientInfoItem:nth-child(2)::after {
        background: color-mix(in srgb, rgb(74 15 255 / 13%) 88%, transparent);
    }

    .clientInfoItem:nth-child(2) .infoIcon {
        background: rgba(139,92,246,.10);
        color: #7c3aed;
    }



    .clientInfoItem:nth-child(3)::before {
        background: #f59e0b;
    }

    .clientInfoItem:nth-child(3)::after {
        background: color-mix(in srgb, rgba(245, 158, 11, 0.16) 90%, transparent);
    }

    .clientInfoItem:nth-child(3) .infoIcon {
        background: rgba(245,158,11,.10);
        color: #d97706;
    }



    .clientInfoItem:nth-child(4)::before {
        background: #06b6d4;
    }

    .clientInfoItem:nth-child(4)::after {
        background: color-mix(in srgb, rgb(15 166 255 / 20%) 100%, transparent);
    }

    .clientInfoItem:nth-child(4) .infoIcon {
        background: rgba(6,182,212,.10);
        color: #0891b2;
    }



    .clientAddress::before {
        background: #22c55e;
    }

    .clientAddress::after {
        background: color-mix(in srgb, rgba(21, 145, 95, 0.22) 90%, transparent);
    }

    .clientAddress .infoIcon {
        background: rgba(34,197,94,.10);
        color: #16a34a;
    }



.infoIcon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(14px,1vw,18px);
    transition: all .25s ease;
}

.clientInfoItem:hover .infoIcon,
.clientAddress:hover .infoIcon {
    transform: scale(1.08);
}

.clientInfoItem label,
.clientAddress label {
    display: block;
    margin-bottom: 4px;
    font-size: clamp(9px,.8vw,12px);
    color: #94a3b8;
    font-family: var(--font-medium);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.clientInfoItem p,
.clientAddress p {
    margin: 0;
    color: #1f2937;
    font-size: clamp(12px,.95vw,15px);
    font-family: var(--font-semibold);
    line-height: 1.5;
}

.clientAddress {
    width: 100%;
}


/*=======Custom Tabs======*/
.tab-content.customTabContent {
    padding: 15px 15px;
    margin-top: 0;
}

.customTabs {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #dce9e2;
    overflow-x: auto;
    scrollbar-width: none;
}

    .customTabs::-webkit-scrollbar {
        display: none;
    }

.customTab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
    color: #64748b;
}

    .customTab:hover {
        /*background: rgba(79, 141, 116, 0.05);*/
        color: #2f6f57;
    }

.customTabIcon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #edf7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f8d74;
    font-size: clamp(14px, 1vw, 16px);
    transition: all .25s ease;
    flex-shrink: 0;
}

.customTabTitle {
    display: block;
    font-size: clamp(13px, .9vw, 15px);
    font-family: var(--font-semibold);
    color: #334155;
    transition: color .25s ease;
}

.customTabText small {
    display: none;
}

.customTab::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f8d74, #6ba286);
    border-radius: 10px 10px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.customTab.active {
    background: transparent;
    box-shadow: none;
    color: #2f6f57;
}

    .customTab.active::before {
        transform: scaleX(1);
    }

    .customTab.active .customTabTitle {
        color: #2f6f57;
    }

    .customTab.active .customTabIcon {
        background: linear-gradient(135deg, #4f8d74, #6ba286);
        color: #fff;
        box-shadow: 0 6px 16px rgba(79, 141, 116, .18);
    }

.customTab:hover .customTabIcon {
    transform: translateY(-2px);
}

.customTab:hover::before {
    transform: scaleX(.45);
}

.tab-content {
    margin-top: 10px;
}


/*=====================================*/

.paymentCard {
    background: linear-gradient(180deg,#f9fcfb 0%,#ffffff 22%);
    overflow: hidden;
}

.paymentCardHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: linear-gradient(90deg,rgba(79,141,116,.08),rgba(255,255,255,.95));
    border-bottom: 1px solid #edf2f7;
}

.paymentCardTitle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.paymentBankIcon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#4f8d74,#73b18d);
    color: #fff;
    font-size: clamp(18px, 1.2vw, 22px);
    box-shadow: 0 12px 24px rgba(79,141,116,.18);
}

.paymentBankName h5 {
    margin: 0;
    font-size: clamp(16px,1.1vw,20px);
    color: #1f2937;
    font-family: var(--font-semibold);
}

.paymentBankName span {
    display: block;
    margin-top: 3px;
    color: #7b8794;
    font-size: clamp(10px, 0.9vw, 14px);
}

.paymentUpdated {
    text-align: right;
}

    .paymentUpdated label {
        display: block;
        margin-bottom: 4px;
        color: #94a3b8;
        font-size: clamp(9px, 0.8vw, 11px);
        text-transform: uppercase;
        letter-spacing: .08em;
        font-family: var(--font-medium);
    }

    .paymentUpdated span {
        font-size: clamp(11px, 0.9vw, 14px);
        color: #334155;
        font-family: var(--font-semibold);
    }

.paymentAccountNumber {
    margin: 15px 15px;
    padding: 15px 15px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #eef3ff);
    border: 1px solid #d9dcff;
}

    .paymentAccountNumber label {
        display: block;
        margin-bottom: 6px;
        color: #7b8794;
        font-size: clamp(10px, 0.8vw, 11px);
        text-transform: uppercase;
        letter-spacing: .08em;
        font-family: var(--font-medium);
    }

.paymentAccountValue {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .paymentAccountValue i {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #e1e9ff;
        color: #6b63f2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(14px, 1vw, 16px);
        box-shadow: 0 6px 18px rgba(15,23,42,.06);
    }

    .paymentAccountValue h6 {
        font-size: clamp(15px,1vw,18px);
        color: #1f2937;
        font-family: var(--font-semibold);
        letter-spacing: .5px;
        margin: 0;
    }

.paymentInfoGrid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    padding: 0 15px 15px;
}

.paymentInfoItem {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    transition: all .25s ease;
}

    .paymentInfoItem:hover {
        background: #fbfdfc;
        border-color: #c8ddd1;
        box-shadow: 0 8px 20px rgba(15,23,42,.05);
    }

.paymentIcon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(13px, 1vw, 16px);
    transition: .25s;
}

.paymentInfoItem:nth-child(1) .paymentIcon {
    background: rgba(59,130,246,.10);
    color: #2563eb;
}

.paymentInfoItem:nth-child(2) .paymentIcon {
    background: rgba(139,92,246,.10);
    color: #7c3aed;
}

.paymentInfoItem:nth-child(3) .paymentIcon {
    background: rgba(245,158,11,.12);
    color: #d97706;
}

.paymentInfoItem:nth-child(4) .paymentIcon {
    background: rgba(34,197,94,.12);
    color: #16a34a;
}

.paymentInfoItem:hover .paymentIcon {
    transform: scale(1.08);
}

.paymentInfoItem label {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: clamp(10px, 0.8vw, 11px);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: var(--font-medium);
}

.paymentInfoItem p {
    margin: 0;
    color: #1f2937;
    font-size: clamp(12px,.95vw,15px);
    font-family: var(--font-semibold);
    line-height: 1.45;
}

.notifLoadMoreWrap {
    text-align: center;
    padding: 10px 16px;
    border-top: 1px solid #f0f0f0;
}

.notifLoadMoreBtn {
    background: none;
    border: none;
    color: var(--bs-primary, #0d6efd);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

    .notifLoadMoreBtn:disabled {
        opacity: 0.6;
        cursor: default;
    }
