/* Governance Hub — Platform Super Admin UI */

.gh-platform {
    --gh-primary: #008B9C;
    --gh-primary-dark: #007A8A;
    --gh-accent: #C1A35F;
    --gh-brand: #001D4A;
    --gh-brand-dark: #001233;
    --gh-navy: #001D4A;
    --gh-muted: #64748b;
    --gh-border: #e2e8f0;
    --gh-bg: #f4f7fa;
    --gh-card: #ffffff;
    --gh-sidebar: #001D4A;
    --gh-sidebar-hover: rgba(0, 139, 156, 0.14);
    --gh-radius: 14px;
    --gh-shadow: 0 4px 24px rgba(0, 29, 74, 0.08);
    font-family: 'Source Sans Pro', sans-serif;
}

.gh-platform .content-header {
    background: transparent;
}

.gh-platform .breadcrumb {
    background: transparent;
}

.gh-platform .gh-page-content {
    padding: 20px;
}

.gh-platform .gh-card {
    background: var(--gh-card);
    border-radius: var(--gh-radius);
    box-shadow: var(--gh-shadow);
    border: 1px solid var(--gh-border);
    margin-bottom: 20px;
}

.gh-platform .gh-card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--gh-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.gh-platform .gh-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--gh-brand);
}

.gh-platform .gh-card-body {
    padding: 22px;
}

.gh-platform .gh-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.gh-platform .gh-stat-card {
    background: var(--gh-card);
    border-radius: var(--gh-radius);
    padding: 22px;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gh-platform .gh-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 118, 0.12);
}

.gh-platform .gh-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.gh-platform .gh-stat-icon.teal { background: linear-gradient(135deg, var(--do-teal), var(--do-teal-light)); }
.gh-platform .gh-stat-icon.navy { background: linear-gradient(135deg, var(--do-navy), var(--do-navy-deep)); }
.gh-platform .gh-stat-icon.pink { background: linear-gradient(135deg, var(--do-gold-light), var(--do-gold)); }
.gh-platform .gh-stat-icon.orange { background: linear-gradient(135deg, var(--do-gold), var(--do-gold-dark)); }

.gh-platform .gh-stat-label {
    font-size: 13px;
    color: var(--gh-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gh-platform .gh-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--gh-navy);
    line-height: 1.1;
    margin-top: 4px;
}

.gh-platform .gh-btn-primary {
    background: var(--gh-primary) !important;
    border: 1px solid var(--gh-primary) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 9px 20px;
    font-weight: 600;
    transition: all 0.18s ease;
}

.gh-platform .gh-btn-primary:hover {
    background: var(--gh-brand) !important;
    border-color: var(--gh-brand) !important;
    color: #fff !important;
}

.gh-platform .gh-btn-brand {
    background: var(--gh-brand) !important;
    border: 1px solid var(--gh-brand) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 9px 20px;
    font-weight: 600;
}

.gh-platform .gh-btn-brand:hover {
    background: var(--gh-brand-dark) !important;
    border-color: var(--gh-brand-dark) !important;
    color: #fff !important;
}

.gh-platform .gh-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.gh-platform .gh-table thead th {
    background: var(--gh-bg);
    color: var(--gh-brand);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-bottom: 2px solid var(--gh-border);
}

.gh-platform .gh-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gh-border);
    vertical-align: middle;
    color: var(--gh-navy);
}

.gh-platform .gh-table tbody tr:hover {
    background: rgba(1, 205, 209, 0.04);
}

.gh-platform .gh-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.gh-platform .gh-badge.active { background: #dcfce7; color: #166534; }
.gh-platform .gh-badge.pending { background: #fef3c7; color: #92400e; }
.gh-platform .gh-badge.inactive { background: #fee2e2; color: #991b1b; }

.gh-platform .gh-search-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.gh-platform .gh-search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.gh-platform .gh-search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gh-muted);
}

.gh-platform .gh-search-input-wrap input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid var(--gh-border);
    border-radius: 10px;
    font-size: 14px;
}

.gh-platform .gh-search-input-wrap input:focus {
    border-color: var(--gh-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.15);
}

.gh-platform .gh-form-label {
    font-weight: 600;
    color: var(--gh-brand);
    margin-bottom: 6px;
}

.gh-platform .form-control {
    border-radius: 10px;
    border: 1px solid var(--gh-border);
    box-shadow: none;
    height: 42px;
}

.gh-platform .form-control:focus {
    border-color: var(--gh-primary);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.12);
}

.gh-platform .main-footer {
    background: #fff;
    border-top: 1px solid var(--gh-border);
    color: var(--gh-muted);
    padding: 14px 20px;
}

.gh-platform .gh-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    background: var(--gh-bg);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-brand);
}

.gh-platform .gh-user-chip img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Login page */
.gh-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--gh-bg);
}

.gh-login-brand {
    background: linear-gradient(145deg, #003d58 0%, #005276 45%, #007099 100%);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gh-login-brand::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(1, 205, 209, 0.12);
    top: -100px;
    right: -100px;
}

.gh-login-brand h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 24px 0 12px;
    position: relative;
}

.gh-login-brand p {
    font-size: 17px;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 420px;
    position: relative;
}

.gh-login-brand .gh-feature-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    position: relative;
}

.gh-login-brand .gh-feature-list li {
    padding: 8px 0;
    font-size: 15px;
    opacity: 0.9;
}

.gh-login-brand .gh-feature-list li i {
    color: var(--gh-primary);
    margin-right: 10px;
    width: 18px;
}

.gh-login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gh-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 36px 36px 32px;
    box-shadow: 0 18px 50px rgba(0, 82, 118, 0.1);
    border: 1px solid var(--gh-border);
    position: relative;
    overflow: hidden;
}

.gh-login-card.is-loading {
    pointer-events: none;
}

.gh-auth-loader {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 20;
    border-radius: 20px;
}

.gh-auth-loader.is-visible {
    display: flex;
}

.gh-auth-loader-modal {
    border-radius: 16px;
}

.gh-auth-loader-inner {
    text-align: center;
    padding: 20px;
}

.gh-auth-spinner {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 3px solid rgba(1, 205, 209, 0.18);
    border-top-color: var(--gh-primary);
    border-right-color: var(--gh-brand);
    animation: ghAuthSpin 0.75s linear infinite;
}

@keyframes ghAuthSpin {
    to { transform: rotate(360deg); }
}

.gh-auth-loader-text {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-brand);
    letter-spacing: 0.2px;
}

.gh-login-card .gh-btn-login.is-loading,
.gh-otp-modal .gh-btn-login.is-loading,
.gh-otp-verify-btn.is-loading {
    opacity: 0.92;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.gh-login-card .gh-btn-login.is-loading .fa-spinner,
.gh-otp-modal .gh-btn-login.is-loading .fa-spinner {
    margin-right: 8px;
}

.gh-auth-messages {
    display: none;
    margin-bottom: 18px;
}

.gh-auth-messages.is-visible {
    display: block;
}

.gh-auth-messages-inline {
    margin-bottom: 14px;
}

.gh-auth-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.45;
    animation: ghAuthMessageIn 0.25s ease;
}

@keyframes ghAuthMessageIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.gh-auth-message i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.gh-auth-message strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.gh-auth-message span {
    display: block;
    color: inherit;
    opacity: 0.92;
}

.gh-auth-message-close {
    margin-left: auto;
    border: none;
    background: transparent;
    color: inherit;
    opacity: 0.65;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.gh-auth-message-close:hover {
    opacity: 1;
}

.gh-auth-message-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.gh-auth-message-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.gh-auth-message-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.gh-login-card-head {
    margin-bottom: 24px;
}

.gh-login-card-head .gh-login-sub {
    margin-bottom: 0;
}

.gh-login-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gh-brand);
    margin: 14px 0 8px;
    letter-spacing: -0.3px;
}

.gh-login-card .gh-login-sub {
    color: var(--gh-muted);
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.55;
}

.gh-login-card .form-control {
    height: 48px;
    border-radius: 11px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
    color: var(--gh-navy);
    background: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-login-card .form-control::placeholder {
    color: #94a3b8;
}

.gh-login-card .form-control:focus {
    border-color: var(--gh-primary);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.16);
    outline: none;
}

.gh-login-card .form-control.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.gh-auth-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.gh-auth-input-wrap {
    position: relative;
}

.gh-auth-input-wrap .form-control {
    padding-left: 44px;
    margin-bottom: 0;
}

.gh-auth-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    line-height: 1;
}

.gh-auth-actions {
    margin-top: 4px;
}

.gh-login-card .gh-btn-login {
    width: 100%;
    height: 48px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: all 0.22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.gh-login-card .gh-btn-login:hover {
    background: linear-gradient(135deg, var(--gh-accent), #e8557f);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(254, 104, 146, 0.28);
}

.gh-auth-back {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--gh-border);
    text-align: center;
}

.gh-back-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gh-brand);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.gh-back-login:hover {
    color: var(--gh-primary-dark);
    text-decoration: none;
}

.gh-auth-footnote {
    margin: 18px 0 0;
    text-align: center;
    font-size: 12px;
    color: var(--gh-muted);
    line-height: 1.5;
}

.gh-auth-footnote i {
    color: var(--gh-primary);
    margin-right: 4px;
}

.gh-otp-modal .gh-otp-actions .gh-btn-login {
    width: auto;
    min-width: 140px;
    height: 42px;
    padding: 0 20px;
}

/* ── OTP Modal V2 ── */
.gh-otp-dialog {
    max-width: 440px;
    width: calc(100% - 32px);
    margin: 16px auto;
}

.gh-otp-modal-v2 {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 82, 118, 0.22);
    position: relative;
    background: #fff;
}

.gh-otp-modal-v2 .modal-body {
    padding: 0;
}

.gh-otp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gh-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gh-otp-close:hover {
    background: #fff;
    color: var(--gh-brand);
}

.gh-otp-modal-hero {
    text-align: center;
    padding: 36px 32px 24px;
    background: linear-gradient(180deg, #f0f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid var(--gh-border);
}

.gh-otp-icon-ring {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(1, 205, 209, 0.15), rgba(0, 82, 118, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gh-otp-icon-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(1, 205, 209, 0.2);
}

.gh-otp-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gh-primary), var(--gh-brand));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(1, 205, 209, 0.35);
}

.gh-otp-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--gh-navy);
    letter-spacing: -0.3px;
}

.gh-otp-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--gh-muted);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.gh-otp-modal-body {
    padding: 28px 32px 32px !important;
}

.gh-otp-toast-wrap {
    min-height: 0;
    margin-bottom: 18px;
}

.gh-otp-toast-wrap:empty {
    display: none;
}

.gh-otp-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    animation: ghAuthMessageIn 0.25s ease;
}

.gh-otp-toast i {
    font-size: 16px;
    flex-shrink: 0;
}

.gh-otp-toast-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.gh-otp-toast-warning {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.gh-otp-toast-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.gh-otp-digits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.gh-otp-digit {
    width: 100%;
    height: 54px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--gh-navy);
    background: #f8fafc;
    transition: all 0.2s ease;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.gh-otp-digit:focus {
    border-color: var(--gh-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(1, 205, 209, 0.15);
}

.gh-otp-digit.is-filled {
    border-color: rgba(0, 82, 118, 0.25);
    background: #fff;
}

.gh-otp-digit.has-error {
    border-color: #f87171;
    background: #fef2f2;
    animation: ghOtpShake 0.35s ease;
}

@keyframes ghOtpShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.gh-otp-verify-btn {
    width: 100% !important;
    height: 50px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark));
    border: none;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.22s ease;
}

.gh-otp-verify-btn:hover {
    background: linear-gradient(135deg, var(--gh-accent), #e8557f);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(254, 104, 146, 0.28);
}

.gh-otp-verify-btn.is-loading {
    opacity: 0.85;
    pointer-events: none;
}

.gh-otp-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gh-otp-timer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0f6f9;
    border-radius: 50px;
    font-size: 13px;
    color: var(--gh-muted);
}

.gh-otp-timer-pill i {
    color: var(--gh-primary);
}

.gh-otp-timer-pill strong,
.gh-otp-timer-pill .countdown {
    color: var(--gh-brand);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.gh-otp-resend-btn {
    border: none;
    background: transparent;
    color: var(--gh-brand);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.gh-otp-resend-btn:hover {
    background: rgba(1, 205, 209, 0.1);
    color: var(--gh-primary-dark);
}

.gh-otp-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gh-otp-resend-btn i {
    margin-right: 4px;
}

@media (max-width: 480px) {
    .gh-otp-modal-body {
        padding: 22px 20px 26px !important;
    }

    .gh-otp-modal-hero {
        padding: 28px 20px 20px;
    }

    .gh-otp-digits {
        gap: 8px;
    }

    .gh-otp-digit {
        height: 48px;
        font-size: 20px;
        border-radius: 10px;
    }
}

.gh-auth-footer {
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--gh-muted);
    text-align: center;
    line-height: 1.5;
}

.gh-auth-field .error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #dc2626;
    font-weight: 500;
}

.gh-login-logo {
    width: 52px;
    height: 52px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gh-login-logo-sm {
    width: 44px;
    height: 44px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gh-login-field { margin: 0 0 4px; }

.gh-auth-link {
    color: var(--gh-primary);
    font-weight: 600;
    text-decoration: none;
}

.gh-auth-link:hover {
    color: var(--gh-accent);
    text-decoration: underline;
}

.gh-password-field {
    position: relative;
    margin-bottom: 0;
}

.gh-password-field .form-control {
    margin-bottom: 0;
    padding-right: 46px;
}

.gh-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 2;
    border: none;
    background: transparent;
    color: var(--gh-muted);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gh-password-toggle:hover {
    color: var(--gh-primary);
    background: rgba(1, 205, 209, 0.08);
}

.gh-password-rules {
    background: #f8fafc;
    border: 1px solid var(--gh-border);
    border-radius: 12px;
    padding: 14px 16px;
    margin: -4px 0 18px;
}

.gh-password-rules-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gh-brand);
    margin: 0 0 10px;
}

.gh-password-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    margin: 0 0 6px;
}

.gh-password-rule:last-child {
    margin-bottom: 0;
}

.gh-password-rule-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background: #e2e8f0;
    color: #94a3b8;
    flex-shrink: 0;
}

.gh-password-rule.is-valid {
    color: #047857;
}

.gh-password-rule.is-valid .gh-password-rule-icon {
    background: #d1fae5;
    color: #059669;
}

.gh-password-rule.is-invalid .gh-password-rule-icon {
    background: #fee2e2;
    color: #dc2626;
}

.gh-password-rules-complete {
    border-color: rgba(5, 150, 105, 0.25);
    background: #f0fdf4;
}

.gh-login-card .gh-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(1, 205, 209, 0.12);
    color: var(--gh-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gh-auth-field {
    margin-bottom: 16px;
}

.gh-auth-field .form-control {
    margin-bottom: 0;
}

.gh-login-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 18px;
    font-size: 13px;
}

.gh-remember-me {
    margin: 0;
    color: var(--gh-muted);
    font-weight: 500;
    cursor: pointer;
}

.gh-forgot-link,
.gh-back-login {
    color: var(--gh-primary);
    font-weight: 600;
    text-decoration: none;
}

.gh-forgot-link:hover,
.gh-back-login:hover {
    color: var(--gh-accent);
    text-decoration: underline;
}

.gh-login-note {
    margin: 18px 0 0;
    font-size: 12px;
    color: var(--gh-muted);
    text-align: center;
}

.gh-login-page-single {
    grid-template-columns: 1fr;
}

.gh-login-form-panel-full {
    min-height: 100vh;
}

@media (max-width: 991px) {
    .gh-login-page { grid-template-columns: 1fr; }
    .gh-login-brand { padding: 40px 30px; min-height: auto; }
    .gh-login-brand h1 { font-size: 28px; }
}

/* Auth pages — professional login */
.gh-auth-page { margin: 0; min-height: 100vh; background: #f8fafc; }
.gh-auth-shell { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; }
.gh-auth-shell-single { grid-template-columns: 1fr; }
.gh-auth-aside { background: linear-gradient(160deg, #003d58 0%, #005276 55%, #007089 100%); color: #fff; padding: 56px; display: flex; align-items: center; position: relative; overflow: hidden; }
.gh-auth-aside::after { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(1, 205, 209, 0.14); top: -120px; right: -80px; }
.gh-auth-aside-inner { position: relative; z-index: 1; max-width: 460px; }
.gh-auth-brand-mark { width: 48px; height: 48px; border-radius: 14px; background: var(--gh-primary); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.gh-auth-aside h1 { font-size: 38px; line-height: 1.15; font-weight: 700; margin: 0 0 16px; }
.gh-auth-aside p { font-size: 16px; line-height: 1.7; opacity: 0.88; margin: 0 0 28px; }
.gh-auth-points { list-style: none; margin: 0; padding: 0; }
.gh-auth-points li { position: relative; padding-left: 22px; margin-bottom: 12px; font-size: 15px; opacity: 0.92; }
.gh-auth-points li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--gh-primary); }
.gh-auth-main { display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.gh-auth-card { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--gh-border); border-radius: 20px; box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08); padding: 36px 32px 32px; }
.gh-auth-card-head h2 { margin: 0 0 6px; font-size: 28px; font-weight: 700; color: var(--gh-brand); }
.gh-auth-card-head p { margin: 0 0 28px; color: var(--gh-muted); font-size: 14px; }
.gh-auth-form .gh-field { margin-bottom: 18px; }
.gh-auth-form label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: #334155; }
.gh-input { width: 100%; height: 48px; border: 1px solid #dbe3ea; border-radius: 12px; padding: 0 14px; font-size: 15px; color: #0f172a; background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.gh-input:focus { outline: none; border-color: var(--gh-primary); box-shadow: 0 0 0 4px rgba(1, 205, 209, 0.15); }
.gh-input-wrap { position: relative; }
.gh-input-wrap .gh-input { padding-right: 44px; }
.gh-toggle-password { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); border: 0; background: transparent; color: var(--gh-muted); cursor: pointer; padding: 6px; }
.gh-auth-row { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 22px; gap: 12px; }
.gh-check { display: inline-flex; align-items: center; gap: 8px; margin: 0; font-size: 13px; color: var(--gh-muted); cursor: pointer; }
.gh-link, .gh-back-link { color: var(--gh-brand); font-size: 13px; font-weight: 600; text-decoration: none; }
.gh-link:hover, .gh-back-link:hover { color: var(--gh-primary-dark); text-decoration: underline; }
.gh-back-link { display: inline-block; margin-top: 18px; text-align: center; width: 100%; }
.gh-btn-block { width: 100%; height: 48px; border-radius: 12px; border: 0; font-size: 15px; font-weight: 700; }
.gh-auth-footnote { margin: 20px 0 0; text-align: center; font-size: 12px; color: var(--gh-muted); }
@media (max-width: 991px) {
    .gh-auth-shell { grid-template-columns: 1fr; }
    .gh-auth-aside { padding: 36px 28px; min-height: auto; }
    .gh-auth-aside h1 { font-size: 30px; }
    .gh-auth-points { display: none; }
}

/* ==========================================================================
   AdminLTE overrides — fixed layout
   ========================================================================== */

.gh-platform .wrapper {
    overflow-x: hidden;
}

.gh-platform .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    max-height: 58px;
}

.gh-platform .main-header .logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 230px;
    height: 58px;
    z-index: 1031;
    background: var(--gh-brand-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 16px;
    float: none;
}

.gh-platform .main-header .navbar {
    position: fixed;
    top: 0;
    left: 230px;
    right: 0;
    height: 58px;
    margin-left: 0 !important;
    background-color: #fff !important;
    border-bottom: 1px solid var(--gh-border);
    z-index: 1030;
    display: flex;
    align-items: center;
}

.gh-platform .main-header .navbar .sidebar-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0 !important;
    margin: 6px 8px 6px 6px;
    background: transparent !important;
    background-image: none !important;
    border-radius: 10px;
    float: left;
}

.gh-platform .main-header .navbar .sidebar-toggle:before,
.gh-platform .main-header .navbar .sidebar-toggle:after {
    display: none !important;
    content: none !important;
}

.gh-platform .gh-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
}

.gh-platform .gh-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gh-brand);
    border-radius: 2px;
    transition: background 0.2s ease;
}

.gh-platform .sidebar-toggle:hover .gh-hamburger span {
    background: var(--gh-primary);
}

.gh-platform .navbar-custom-menu {
    margin-left: auto !important;
    float: none !important;
    margin-right: 12px;
}

.gh-platform .navbar-custom-menu > .navbar-nav {
    float: none !important;
    margin: 0;
}

.gh-platform .navbar-custom-menu > .navbar-nav > li {
    float: none;
}

.gh-platform .main-header .navbar .nav > li > a {
    color: var(--gh-brand) !important;
    padding: 16px 12px;
    height: 58px;
    display: flex;
    align-items: center;
}

.gh-platform .main-header .navbar .nav > li > a:hover {
    background: var(--gh-bg) !important;
}

.gh-platform .gh-logo-wrap {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.gh-platform .gh-logo-icon,
.gh-platform .gh-logo-icon-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gh-primary);
    color: #fff;
    font-weight: 800;
    border-radius: 10px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.gh-platform .gh-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
}

.gh-platform .gh-logo-icon-sm {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.gh-platform .gh-brand-text {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.gh-platform .main-sidebar {
    position: fixed !important;
    top: 58px !important;
    left: 0 !important;
    width: 230px !important;
    height: calc(100vh - 58px) !important;
    background: var(--gh-sidebar) !important;
    padding-top: 0 !important;
    z-index: 1020;
    border-top: none !important;
}

.gh-platform .content-wrapper {
    margin-left: 230px !important;
    margin-top: 58px !important;
    background: var(--gh-bg) !important;
    min-height: calc(100vh - 58px) !important;
}

.gh-platform .main-footer {
    margin-left: 230px !important;
}

.gh-platform .sidebar-menu {
    margin-top: 8px;
}

.gh-platform .sidebar-menu > li.header {
    color: rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    padding: 14px 18px 6px !important;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.gh-platform .sidebar-menu > li > a {
    padding: 12px 18px !important;
    border-left: 3px solid transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.gh-platform .sidebar-menu > li.active > a,
.gh-platform .sidebar-menu > li.active > a:hover,
.gh-platform .sidebar-menu > li > a:hover {
    background: rgba(1, 205, 209, 0.14) !important;
    color: #fff !important;
    border-left-color: var(--gh-primary) !important;
}

.gh-platform .sidebar-menu > li.active > a i,
.gh-platform .sidebar-menu > li > a:hover i {
    color: var(--gh-primary) !important;
}

.gh-platform .sidebar-menu > li > a i {
    color: rgba(255, 255, 255, 0.65);
    width: 20px;
}

.gh-platform .gh-sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.gh-platform .gh-sidebar-footer strong {
    display: block;
    color: var(--gh-primary);
    font-size: 12px;
}

.gh-platform .gh-sidebar-footer span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.gh-platform .sidebar {
    padding-bottom: 64px;
    height: 100%;
    overflow-y: auto;
}

.gh-platform .gh-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 24px 28px 0 !important;
    background: transparent;
}

.gh-platform .gh-content-header-left h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--gh-brand);
    line-height: 1.2;
}

.gh-platform .gh-content-header-right {
    padding-top: 0;
}

.gh-platform .gh-content-header-right .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.gh-platform .gh-content-header-right .breadcrumb a {
    color: var(--gh-muted);
}

.gh-platform .gh-content-header-right .breadcrumb .active {
    color: var(--gh-brand);
    font-weight: 600;
}

.gh-platform .gh-page-content {
    padding: 20px 28px 32px !important;
}

.gh-platform .dropdown-menu > .user-header {
    background: var(--gh-brand) !important;
}

.gh-platform .gh-user-chip {
    border: 1px solid var(--gh-border);
    background: #fff;
    padding: 4px 12px 4px 4px;
}

.gh-platform .gh-user-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.gh-platform .dropdown-menu > .user-footer {
    background: #fff;
    padding: 12px 14px;
}

.gh-platform .dropdown-menu > .user-footer .btn-flat {
    margin: 0;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gh-brand);
    border-color: var(--gh-border);
}

.gh-platform .dropdown-menu > .user-footer .btn-flat:hover {
    background: var(--gh-bg);
    border-color: var(--gh-primary);
    color: var(--gh-brand);
}

.gh-platform .gh-form-actions {
    border-top: 1px solid var(--gh-border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.gh-platform .logo-mini {
    display: none;
}

.gh-platform.sidebar-mini.sidebar-collapse .main-header .logo {
    width: 50px;
    padding: 0;
    justify-content: center;
}

.gh-platform.sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
    display: none;
}

.gh-platform.sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gh-platform.sidebar-mini.sidebar-collapse .main-header .navbar {
    left: 50px;
}

.gh-platform.sidebar-mini.sidebar-collapse .main-sidebar {
    width: 50px !important;
}

.gh-platform.sidebar-mini.sidebar-collapse .content-wrapper,
.gh-platform.sidebar-mini.sidebar-collapse .main-footer {
    margin-left: 50px !important;
}

.gh-platform.sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
.gh-platform.sidebar-mini.sidebar-collapse .sidebar-menu > li.header,
.gh-platform.sidebar-mini.sidebar-collapse .gh-sidebar-footer {
    display: none !important;
}

@media (max-width: 767px) {
    .gh-platform .main-header .navbar {
        left: 0;
    }

    .gh-platform .main-header .logo {
        display: none;
    }

    .gh-platform .main-sidebar {
        transform: translateX(-230px);
    }

    .gh-platform.sidebar-open .main-sidebar {
        transform: translateX(0);
    }

    .gh-platform .content-wrapper,
    .gh-platform .main-footer {
        margin-left: 0 !important;
    }

    .gh-platform .gh-sticky-actions {
        left: 0;
    }
}

/* ==========================================================================
   Business onboarding / edit form
   ========================================================================== */

.gh-platform .gh-business-form-page {
    padding-bottom: 88px;
}

.gh-platform .gh-page-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    box-shadow: var(--gh-shadow);
}

.gh-platform .gh-page-intro-left h2 {
    margin: 10px 0 6px;
    font-size: 28px;
    font-weight: 700;
    color: var(--gh-brand);
}

.gh-platform .gh-page-intro-left p {
    margin: 0;
    color: var(--gh-muted);
    font-size: 15px;
    max-width: 560px;
    line-height: 1.6;
}

.gh-platform .gh-back-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gh-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease;
}

.gh-platform .gh-back-link-inline:hover {
    color: var(--gh-brand);
    text-decoration: none;
}

.gh-platform .gh-page-intro-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.gh-platform .gh-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gh-muted);
    background: #fff;
    border: 1px solid var(--gh-border);
}

.gh-platform .gh-step-pill.is-active {
    color: var(--gh-brand);
    background: rgba(1, 205, 209, 0.1);
    border-color: rgba(1, 205, 209, 0.35);
}

.gh-platform .gh-page-intro-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gh-platform .gh-form-section {
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    box-shadow: var(--gh-shadow);
    margin-bottom: 18px;
    overflow: hidden;
}

.gh-platform .gh-form-section-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--gh-border);
    background: linear-gradient(180deg, #fbfdfe 0%, #fff 100%);
}

.gh-platform .gh-form-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(1, 205, 209, 0.12);
    color: var(--gh-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.gh-platform .gh-form-section-head h4 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--gh-brand);
}

.gh-platform .gh-form-section-head p {
    margin: 0;
    font-size: 13px;
    color: var(--gh-muted);
    line-height: 1.5;
}

.gh-platform .gh-form-section-body {
    padding: 22px;
}

.gh-platform .gh-field-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gh-muted);
}

.gh-platform .gh-input-field,
.gh-platform .gh-textarea-field {
    border-radius: 10px;
    border: 1px solid var(--gh-border);
    box-shadow: none;
    height: 44px;
    font-size: 14px;
}

.gh-platform .gh-textarea-field {
    height: auto;
    min-height: 96px;
    padding: 12px 14px;
    resize: vertical;
}

.gh-platform .gh-input-field:focus,
.gh-platform .gh-textarea-field:focus {
    border-color: var(--gh-primary);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.12);
}

.gh-platform .form-group.has-error .gh-input-field,
.gh-platform .form-group.has-error .gh-textarea-field {
    border-color: #ef4444;
}

.gh-platform .gh-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gh-platform .gh-status-option {
    margin: 0;
    cursor: pointer;
    display: block;
    min-width: 0;
}

.gh-platform .gh-status-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gh-platform .gh-status-option-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    min-height: 88px;
    padding: 16px 44px 16px 16px;
    border: 1.5px solid var(--gh-border);
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s ease;
}

.gh-platform .gh-status-option:hover .gh-status-option-inner {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.gh-platform .gh-status-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--gh-bg);
    color: var(--gh-muted);
    font-size: 16px;
    transition: all 0.2s ease;
}

.gh-platform .gh-status-option-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding-top: 2px;
}

.gh-platform .gh-status-option-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-navy);
    line-height: 1.2;
}

.gh-platform .gh-status-option-text small {
    font-size: 12px;
    color: var(--gh-muted);
    line-height: 1.45;
}

.gh-platform .gh-status-option-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--gh-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.2s ease;
}

.gh-platform .gh-status-option-check i {
    font-size: 10px;
    color: #fff;
}

.gh-platform .gh-status-option--active.is-selected .gh-status-option-inner,
.gh-platform .gh-status-option--active input:checked + .gh-status-option-inner {
    border-color: #22c55e;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.gh-platform .gh-status-option--active.is-selected .gh-status-option-icon,
.gh-platform .gh-status-option--active input:checked + .gh-status-option-inner .gh-status-option-icon {
    background: #dcfce7;
    color: #16a34a;
}

.gh-platform .gh-status-option--active.is-selected .gh-status-option-check,
.gh-platform .gh-status-option--active input:checked + .gh-status-option-inner .gh-status-option-check {
    opacity: 1;
    transform: scale(1);
    border-color: #22c55e;
    background: #22c55e;
}

.gh-platform .gh-status-option--pending.is-selected .gh-status-option-inner,
.gh-platform .gh-status-option--pending input:checked + .gh-status-option-inner {
    border-color: var(--gh-primary);
    background: linear-gradient(180deg, rgba(1, 205, 209, 0.1) 0%, #fff 100%);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.12);
}

.gh-platform .gh-status-option--pending.is-selected .gh-status-option-icon,
.gh-platform .gh-status-option--pending input:checked + .gh-status-option-inner .gh-status-option-icon {
    background: rgba(1, 205, 209, 0.15);
    color: var(--gh-brand);
}

.gh-platform .gh-status-option--pending.is-selected .gh-status-option-check,
.gh-platform .gh-status-option--pending input:checked + .gh-status-option-inner .gh-status-option-check {
    opacity: 1;
    transform: scale(1);
    border-color: var(--gh-primary);
    background: var(--gh-primary);
}

.gh-platform .gh-status-option--inactive.is-selected .gh-status-option-inner,
.gh-platform .gh-status-option--inactive input:checked + .gh-status-option-inner {
    border-color: #f87171;
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.gh-platform .gh-status-option--inactive.is-selected .gh-status-option-icon,
.gh-platform .gh-status-option--inactive input:checked + .gh-status-option-inner .gh-status-option-icon {
    background: #fee2e2;
    color: #dc2626;
}

.gh-platform .gh-status-option--inactive.is-selected .gh-status-option-check,
.gh-platform .gh-status-option--inactive input:checked + .gh-status-option-inner .gh-status-option-check {
    opacity: 1;
    transform: scale(1);
    border-color: #ef4444;
    background: #ef4444;
}

.gh-platform .gh-logo-upload {
    display: flex;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
}

.gh-platform .gh-logo-preview-wrap {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    border: 1px solid var(--gh-border);
    background: var(--gh-bg);
    overflow: hidden;
    flex-shrink: 0;
}

.gh-platform .gh-logo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gh-platform .gh-upload-zone {
    flex: 1;
    min-width: 240px;
    min-height: 120px;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #fafcfd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.18s ease;
}

.gh-platform .gh-upload-zone:hover,
.gh-platform .gh-upload-zone.is-dragover,
.gh-platform .gh-upload-zone:focus {
    border-color: var(--gh-primary);
    background: rgba(1, 205, 209, 0.05);
    outline: none;
}

.gh-platform .gh-upload-zone.has-file {
    border-style: solid;
    border-color: rgba(1, 205, 209, 0.45);
}

.gh-platform .gh-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.gh-platform .gh-upload-zone-content {
    text-align: center;
    padding: 16px;
    pointer-events: none;
}

.gh-platform .gh-upload-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: rgba(1, 205, 209, 0.12);
    color: var(--gh-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.gh-platform .gh-upload-zone-content p {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--gh-navy);
}

.gh-platform .gh-upload-zone-content small {
    color: var(--gh-muted);
    font-size: 12px;
}

.gh-platform .gh-switch-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 8px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--gh-border);
    background: var(--gh-bg);
}

.gh-platform .gh-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    margin: 2px 0 0;
}

.gh-platform .gh-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gh-platform .gh-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e1;
    border-radius: 999px;
    transition: 0.2s ease;
}

.gh-platform .gh-switch-slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.15);
}

.gh-platform .gh-switch input:checked + .gh-switch-slider {
    background: var(--gh-primary);
}

.gh-platform .gh-switch input:checked + .gh-switch-slider:before {
    transform: translateX(20px);
}

.gh-platform .gh-switch-card-text strong {
    display: block;
    color: var(--gh-brand);
    font-size: 14px;
    margin-bottom: 4px;
}

.gh-platform .gh-switch-card-text p {
    margin: 0;
    font-size: 13px;
    color: var(--gh-muted);
    line-height: 1.55;
}

.gh-platform .gh-switch-card-text code {
    font-size: 12px;
    color: var(--gh-brand);
    background: rgba(0, 82, 118, 0.08);
    padding: 1px 6px;
    border-radius: 6px;
}

.gh-platform .gh-form-sidebar {
    position: sticky;
    top: 78px;
}

.gh-platform .gh-sidebar-card {
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    box-shadow: var(--gh-shadow);
    padding: 18px;
    margin-bottom: 16px;
}

.gh-platform .gh-sidebar-card h5 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-brand);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-platform .gh-sidebar-card p {
    margin: 0;
    font-size: 13px;
    color: var(--gh-muted);
    line-height: 1.6;
}

.gh-platform .gh-sidebar-card-muted {
    background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

.gh-platform .gh-sidebar-card-warning {
    background: #fffbeb;
    border-color: #fde68a;
}

.gh-platform .gh-sidebar-card-warning h5 {
    color: #92400e;
}

.gh-platform .gh-sidebar-card-warning p {
    color: #a16207;
}

.gh-platform .gh-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gh-platform .gh-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--gh-navy);
    line-height: 1.5;
}

.gh-platform .gh-checklist li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 11px;
    color: var(--gh-primary);
}

.gh-platform .gh-sidebar-profile-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gh-border);
}

.gh-platform .gh-sidebar-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--gh-border);
}

.gh-platform .gh-sidebar-profile-head h5 {
    margin: 0 0 6px;
}

.gh-platform .gh-meta-list {
    margin: 0;
}

.gh-platform .gh-meta-list > div {
    margin-bottom: 12px;
}

.gh-platform .gh-meta-list > div:last-child {
    margin-bottom: 0;
}

.gh-platform .gh-meta-list dt {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gh-muted);
    margin-bottom: 2px;
}

.gh-platform .gh-meta-list dd {
    margin: 0;
    font-size: 13px;
    color: var(--gh-navy);
    line-height: 1.45;
}

.gh-platform .gh-meta-list dd small {
    color: var(--gh-muted);
}

.gh-platform .gh-meta-list-compact dd {
    font-size: 12px;
}

.gh-platform .gh-code-truncate {
    display: block;
    word-break: break-all;
    font-size: 11px;
}

.gh-platform .gh-sticky-actions {
    position: fixed;
    left: 230px;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--gh-border);
    backdrop-filter: blur(8px);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
}

.gh-platform.sidebar-mini.sidebar-collapse .gh-sticky-actions {
    left: 50px;
}

.gh-platform .gh-sticky-actions-inner {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.gh-platform.sidebar-mini .gh-sticky-actions-inner {
    padding-left: 28px;
}

.gh-platform .gh-btn-ghost {
    background: #fff !important;
    border: 1px solid var(--gh-border) !important;
    color: var(--gh-brand) !important;
    border-radius: 10px;
    padding: 9px 20px;
    font-weight: 600;
}

.gh-platform .gh-btn-ghost:hover {
    background: var(--gh-bg) !important;
    border-color: var(--gh-primary) !important;
    color: var(--gh-brand) !important;
}

.gh-platform .gh-input-wrap {
    position: relative;
}

.gh-platform .gh-input-wrap .gh-input-field {
    padding-right: 44px;
}

.gh-platform .gh-input-wrap .gh-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--gh-muted);
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

@media (max-width: 991px) {
    .gh-platform .gh-form-sidebar {
        position: static;
        margin-top: 4px;
    }

    .gh-platform .gh-page-intro {
        padding: 18px;
    }

    .gh-platform .gh-page-intro-left h2 {
        font-size: 24px;
    }

    .gh-platform .gh-sticky-actions-inner {
        padding: 12px 16px;
    }
}

@media (max-width: 767px) {
    .gh-platform .gh-logo-upload {
        flex-direction: column;
    }

    .gh-platform .gh-logo-preview-wrap {
        width: 100%;
        height: 160px;
    }

    .gh-platform .gh-status-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Business listing — filters, stats, rich table
   ========================================================================== */

.gh-platform .gh-listing-page {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gh-platform .gh-page-intro-listing {
    margin-bottom: 0;
}

.gh-platform .gh-list-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gh-platform .gh-list-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1.5px solid var(--gh-border);
    border-radius: 14px;
    box-shadow: var(--gh-shadow);
    text-decoration: none !important;
    transition: all 0.2s ease;
    color: inherit;
}

.gh-platform .gh-list-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 82, 118, 0.1);
    border-color: #cbd5e1;
    text-decoration: none;
    color: inherit;
}

.gh-platform .gh-list-stat-card.is-active {
    border-color: var(--gh-primary);
    background: linear-gradient(180deg, rgba(1, 205, 209, 0.08) 0%, #fff 100%);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.1);
}

.gh-platform .gh-list-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.gh-platform .gh-list-stat-icon.navy { background: linear-gradient(135deg, #005276, #003d58); }
.gh-platform .gh-list-stat-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.gh-platform .gh-list-stat-icon.amber { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.gh-platform .gh-list-stat-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }

.gh-platform .gh-list-stat-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.gh-platform .gh-list-stat-meta strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--gh-navy);
    line-height: 1.1;
}

.gh-platform .gh-list-stat-meta small {
    font-size: 12px;
    font-weight: 600;
    color: var(--gh-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.gh-platform .gh-filter-card {
    margin-bottom: 0;
}

.gh-platform .gh-filter-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--gh-border);
    background: linear-gradient(180deg, #fbfdfe 0%, #fff 100%);
}

.gh-platform .gh-filter-card-head h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gh-brand);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-platform .gh-filter-card-head p {
    margin: 0;
    font-size: 13px;
    color: var(--gh-muted);
}

.gh-platform .gh-filter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gh-platform .gh-filter-row-search {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}

.gh-platform .gh-search-input-wrap-lg {
    flex: 1;
    min-width: 280px;
}

.gh-platform .gh-search-input-wrap-lg .gh-input-field {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 42px;
    border-radius: 12px;
    border: 1px solid var(--gh-border);
    font-size: 14px;
}

.gh-platform .gh-search-input-wrap-lg i {
    left: 16px;
    font-size: 15px;
}

.gh-platform .gh-filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gh-platform .gh-filter-group-inline {
    flex: 1;
    min-width: 160px;
}

.gh-platform .gh-filter-label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gh-muted);
}

.gh-platform .gh-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gh-platform .gh-filter-pill {
    margin: 0;
    cursor: pointer;
}

.gh-platform .gh-filter-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gh-platform .gh-filter-pill span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--gh-border);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-navy);
    transition: all 0.18s ease;
}

.gh-platform .gh-filter-pill:hover span {
    border-color: #cbd5e1;
    background: var(--gh-bg);
}

.gh-platform .gh-filter-pill.is-active span,
.gh-platform .gh-filter-pill input:checked + span {
    border-color: var(--gh-primary);
    background: rgba(1, 205, 209, 0.1);
    color: var(--gh-brand);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.08);
}

.gh-platform .gh-filter-pill--status-active.is-active span,
.gh-platform .gh-filter-pill--status-active input:checked + span {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #166534;
}

.gh-platform .gh-filter-pill--status-pending.is-active span,
.gh-platform .gh-filter-pill--status-pending input:checked + span {
    border-color: var(--gh-primary);
    background: rgba(1, 205, 209, 0.1);
    color: var(--gh-brand);
}

.gh-platform .gh-filter-pill--status-inactive.is-active span,
.gh-platform .gh-filter-pill--status-inactive input:checked + span {
    border-color: #f87171;
    background: #fef2f2;
    color: #991b1b;
}

.gh-platform .gh-filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
    padding-top: 4px;
    border-top: 1px dashed var(--gh-border);
}

.gh-platform .gh-select-field {
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--gh-border);
    font-size: 14px;
    min-width: 100%;
}

.gh-platform .gh-select-field:focus {
    border-color: var(--gh-primary);
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.12);
}

.gh-platform .gh-filter-apply {
    margin-left: auto;
    align-self: flex-end;
}

.gh-platform .gh-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--gh-border);
}

.gh-platform .gh-active-filters-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gh-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.gh-platform .gh-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gh-bg);
    border: 1px solid var(--gh-border);
    font-size: 12px;
    color: var(--gh-muted);
}

.gh-platform .gh-filter-chip strong {
    color: var(--gh-brand);
}

.gh-platform .gh-list-card {
    margin-bottom: 0;
    overflow: hidden;
}

.gh-platform .gh-list-card-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--gh-border);
    background: #fff;
}

.gh-platform .gh-list-summary h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gh-brand);
}

.gh-platform .gh-list-summary p {
    margin: 0;
    font-size: 13px;
    color: var(--gh-muted);
}

.gh-platform .gh-list-table-wrap {
    overflow-x: auto;
}

.gh-platform .gh-table-rich tbody tr {
    transition: background 0.15s ease;
}

.gh-platform .gh-row-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gh-bg);
    font-size: 12px;
    font-weight: 700;
    color: var(--gh-muted);
}

.gh-platform .gh-business-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.gh-platform .gh-business-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--gh-border);
    flex-shrink: 0;
}

.gh-platform .gh-business-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-brand);
    text-decoration: none;
    line-height: 1.3;
}

.gh-platform .gh-business-name:hover {
    color: var(--gh-primary-dark);
    text-decoration: none;
}

.gh-platform .gh-business-slug {
    display: block;
    font-size: 12px;
    color: var(--gh-muted);
    margin-top: 2px;
}

.gh-platform .gh-business-initials {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(13, 148, 136, 0.08);
    color: var(--gh-primary-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.gh-platform .gh-business-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-size: 11px;
    color: var(--gh-muted);
}

.gh-platform .gh-contact-cell,
.gh-platform .gh-admin-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    min-width: 140px;
}

.gh-platform .gh-contact-cell span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gh-navy);
}

.gh-platform .gh-contact-cell i {
    color: var(--gh-muted);
    width: 14px;
    text-align: center;
}

.gh-platform .gh-admin-cell strong {
    color: var(--gh-navy);
    font-size: 14px;
}

.gh-platform .gh-admin-cell span {
    color: var(--gh-muted);
    font-size: 12px;
}

.gh-platform .gh-role-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gh-platform .gh-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.gh-platform .gh-status-dot i {
    font-size: 8px;
}

.gh-platform .gh-status-dot--active { color: #16a34a; }
.gh-platform .gh-status-dot--pending { color: #d97706; }
.gh-platform .gh-status-dot--inactive { color: #dc2626; }

.gh-platform .gh-row-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.gh-platform .gh-action-trigger {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--gh-border);
    background: #fff;
    color: var(--gh-muted);
    line-height: 34px;
}

.gh-platform .gh-action-trigger:hover {
    border-color: var(--gh-primary);
    color: var(--gh-brand);
    background: var(--gh-bg);
}

.gh-platform .gh-btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 34px;
    border-radius: 10px;
}

.gh-platform .gh-action-menu {
    border: 1px solid var(--gh-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
    min-width: 210px;
}

.gh-platform .gh-action-menu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-navy);
}

.gh-platform .gh-action-menu > li > a i {
    width: 16px;
    color: var(--gh-muted);
}

.gh-platform .gh-action-menu > li > a:hover {
    background: var(--gh-bg);
    color: var(--gh-brand);
}

.gh-platform .gh-action-menu .gh-action-danger {
    color: #dc2626;
}

.gh-platform .gh-action-menu .gh-action-danger:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.gh-platform .gh-list-footer {
    padding: 16px 22px;
    border-top: 1px solid var(--gh-border);
    background: #fbfdfe;
}

.gh-platform .gh-pagination-wrap .pagination {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}

.gh-platform .gh-pagination-wrap .pagination > li > a,
.gh-platform .gh-pagination-wrap .pagination > li > span {
    border-radius: 10px !important;
    border: 1px solid var(--gh-border) !important;
    color: var(--gh-brand) !important;
    font-weight: 600;
    padding: 8px 14px;
    margin: 0;
}

.gh-platform .gh-pagination-wrap .pagination > .active > a,
.gh-platform .gh-pagination-wrap .pagination > .active > span {
    background: var(--gh-primary) !important;
    border-color: var(--gh-primary) !important;
    color: #fff !important;
}

.gh-platform .gh-empty-state {
    text-align: center;
    padding: 56px 24px 64px;
}

.gh-platform .gh-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: rgba(1, 205, 209, 0.1);
    color: var(--gh-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.gh-platform .gh-empty-state h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gh-brand);
}

.gh-platform .gh-empty-state p {
    margin: 0 auto 22px;
    max-width: 420px;
    font-size: 14px;
    color: var(--gh-muted);
    line-height: 1.6;
}

.gh-platform .gh-empty-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gh-platform .gh-text-muted {
    color: var(--gh-muted);
}

.gh-platform .btn-sm {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 9px;
}

@media (max-width: 991px) {
    .gh-platform .gh-list-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gh-platform .gh-filter-apply {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .gh-platform .gh-list-stat-grid {
        grid-template-columns: 1fr;
    }

    .gh-platform .gh-filter-row-search .btn {
        width: 100%;
    }

    .gh-platform .gh-filter-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .gh-platform .gh-filter-group-inline {
        width: 100%;
    }
}

/* ==========================================================================
   Compact listing toolbar + filter drawer (main project pattern)
   ========================================================================== */

.gh-platform .gh-list-form {
    margin: 0;
}

.gh-platform .gh-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 22px;
    border-bottom: 1px solid var(--gh-border);
    background: linear-gradient(180deg, #fbfdfe 0%, #fff 100%);
}

.gh-platform .gh-list-toolbar-left,
.gh-platform .gh-list-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gh-platform .gh-pagination-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gh-platform .gh-pagination-info label {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-muted);
}

.gh-platform .gh-select-compact {
    width: 72px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--gh-border);
    font-size: 13px;
    padding: 4px 8px;
}

.gh-platform .gh-pagination-meta {
    font-size: 13px;
    color: var(--gh-muted);
}

.gh-platform .gh-pagination-meta strong {
    color: var(--gh-brand);
}

.gh-platform .gh-divider {
    color: #cbd5e1;
    margin: 0 4px;
}

.gh-platform .gh-export-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    border: none;
    color: #fff;
    line-height: 36px;
    font-size: 16px;
}

.gh-platform .gh-export-pdf {
    background: #ef4444 !important;
}

.gh-platform .gh-export-pdf:hover {
    background: #dc2626 !important;
    color: #fff !important;
}

.gh-platform .gh-export-xls {
    background: #22c55e !important;
}

.gh-platform .gh-export-xls:hover {
    background: #16a34a !important;
    color: #fff !important;
}

.gh-platform .gh-search-box {
    position: relative;
    min-width: 240px;
}

.gh-platform .gh-search-input {
    width: 100%;
    height: 38px;
    padding: 0 14px 0 36px;
    border: 1px solid var(--gh-border);
    border-radius: 10px;
    font-size: 13px;
    background: #fff;
}

.gh-platform .gh-search-input:focus {
    border-color: var(--gh-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 205, 209, 0.12);
}

.gh-platform .gh-search-icon,
.gh-platform .gh-search-clear {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gh-muted);
    font-size: 14px;
    text-decoration: none;
}

.gh-platform .gh-search-clear:hover {
    color: #ef4444;
}

.gh-platform .gh-filter-toggle {
    position: relative;
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gh-platform .gh-filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gh-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.gh-platform .gh-active-filters-compact {
    margin: 0;
    padding: 10px 22px;
    border-bottom: 1px solid var(--gh-border);
    background: #f8fbfd;
}

.gh-platform .gh-filter-clear-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-brand);
    text-decoration: none;
}

.gh-platform .gh-filter-clear-link:hover {
    color: var(--gh-primary-dark);
    text-decoration: none;
}

.gh-platform #filtermis.filter-box-v02 {
    position: fixed;
    right: 0;
    top: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 40px rgba(15, 23, 42, 0.12);
    overflow: auto;
    display: block !important;
    height: auto !important;
}

html.FilterPopupOpen .gh-platform #filtermis.filter-box-v02 {
    transform: translateX(0);
}

.gh-platform .filter-box-v02-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    background: linear-gradient(135deg, #003d58, #005276);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2;
}

.gh-platform .close_filterPopup {
    color: #fff;
    font-size: 20px;
    opacity: 0.9;
    text-decoration: none;
}

.gh-platform .close_filterPopup:hover {
    color: #fff;
    opacity: 1;
}

.gh-platform .filter-box-v02 .filter-box-inner {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 64px);
    padding: 20px 20px 0;
}

.gh-platform .gh-filter-drawer-fields {
    flex: 1;
}

.gh-platform .gh-filter-drawer-fields .form-group {
    margin-bottom: 18px;
}

.gh-platform .filter_popup_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 24px -20px 0;
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid var(--gh-border);
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.04);
}

.gh-platform .close_filterPopup_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 9998;
    cursor: pointer;
}

.gh-platform .FilterPopupOpen .close_filterPopup_overlay {
    display: block;
}

.gh-platform.FilterPopupOpen,
.gh-platform .FilterPopupOpen {
    overflow: hidden;
}

html.FilterPopupOpen .gh-platform .main-header,
html.FilterPopupOpen .gh-platform .main-sidebar {
    z-index: 1030;
}

@media (max-width: 767px) {
    .gh-platform .gh-list-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .gh-platform .gh-list-toolbar-right {
        width: 100%;
    }

    .gh-platform .gh-search-box {
        flex: 1;
        min-width: 0;
    }

    .gh-platform #filtermis.filter-box-v02 {
        width: 100%;
    }
}

/* ==========================================================================
   Business panel sidebar
   ========================================================================== */

.gh-platform.gh-business-panel .gh-business-sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.gh-platform.gh-business-panel .gh-business-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    flex-shrink: 0;
}

.gh-platform.gh-business-panel .gh-business-sidebar-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(1, 205, 209, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(1, 205, 209, 0.25);
}

.gh-platform.gh-business-panel .gh-business-sidebar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gh-platform.gh-business-panel .gh-business-sidebar-mark {
    color: var(--gh-primary);
    font-size: 14px;
    font-weight: 800;
}

.gh-platform.gh-business-panel .gh-business-sidebar-brand-text {
    min-width: 0;
}

.gh-platform.gh-business-panel .gh-business-sidebar-brand-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gh-platform.gh-business-panel .gh-business-sidebar-brand-text span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.gh-platform.gh-business-panel .gh-business-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 12px;
}

.gh-platform.gh-business-panel .gh-business-sidebar-nav::-webkit-scrollbar {
    width: 5px;
}

.gh-platform.gh-business-panel .gh-business-sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.gh-platform.gh-business-panel .gh-business-menu {
    margin: 0 !important;
}

.gh-platform.gh-business-panel .gh-business-menu > li.header {
    display: none;
}

.gh-platform.gh-business-panel .gh-business-menu > li > a {
    padding: 11px 16px !important;
    font-size: 13.5px;
    font-weight: 600;
    border-left: 3px solid transparent !important;
    display: flex;
    align-items: center;
}

.gh-platform.gh-business-panel .gh-business-menu > li > a i:first-child {
    width: 22px;
    font-size: 15px;
    margin-right: 10px;
    text-align: center;
}

.gh-platform.gh-business-panel .gh-business-menu .pull-right-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gh-platform.gh-business-panel .gh-business-menu .pull-right-container .fa-angle-left {
    transition: transform 0.2s ease;
    font-size: 16px;
    opacity: 0.7;
}

.gh-platform.gh-business-panel .gh-business-menu .menu-open > a .fa-angle-left {
    transform: rotate(-90deg);
}

.gh-platform.gh-business-panel .gh-utilities-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 700;
}

.gh-platform.gh-business-panel .gh-business-menu .treeview-menu {
    padding: 4px 0 8px 0 !important;
    background: rgba(0, 0, 0, 0.12) !important;
    margin: 0 !important;
}

.gh-platform.gh-business-panel .gh-business-menu .treeview-menu > li > a {
    padding: 9px 16px 9px 42px !important;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72) !important;
    border-left: 3px solid transparent !important;
}

.gh-platform.gh-business-panel .gh-business-menu .treeview-menu > li > a i {
    width: 18px;
    margin-right: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.gh-platform.gh-business-panel .gh-business-menu .treeview-menu > li.active > a,
.gh-platform.gh-business-panel .gh-business-menu .treeview-menu > li > a:hover {
    color: #fff !important;
    background: rgba(1, 205, 209, 0.1) !important;
    border-left-color: var(--gh-primary) !important;
}

.gh-platform.gh-business-panel .gh-business-menu .treeview-menu > li.active > a i,
.gh-platform.gh-business-panel .gh-business-menu .treeview-menu > li > a:hover i {
    color: var(--gh-primary) !important;
}

.gh-platform.gh-business-panel .gh-business-menu > li.treeview.active > a,
.gh-platform.gh-business-panel .gh-business-menu > li.treeview.menu-open > a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.gh-platform.gh-business-panel .gh-business-menu > li.active > a {
    background: rgba(1, 205, 209, 0.16) !important;
    color: #fff !important;
    border-left-color: var(--gh-primary) !important;
}

.gh-platform.gh-business-panel .gh-business-sidebar-footer {
    position: relative !important;
    flex-shrink: 0;
    margin-top: auto;
    padding: 12px 16px !important;
    text-align: left !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.gh-platform.gh-business-panel .gh-sidebar-footer-badge {
    display: block;
    color: var(--gh-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.gh-platform.gh-business-panel .gh-business-sidebar-footer span:last-child {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-sidebar-brand-text,
.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-sidebar-footer,
.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-menu > li > a span,
.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-menu .pull-right-container,
.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-menu .treeview-menu {
    display: none !important;
}

.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-sidebar-brand {
    justify-content: center;
    padding: 14px 8px;
}

.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-menu > li > a {
    justify-content: center;
    padding: 12px 8px !important;
}

.gh-platform.gh-business-panel.sidebar-mini.sidebar-collapse .gh-business-menu > li > a i:first-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .gh-platform.gh-business-panel .gh-business-sidebar-brand-text strong {
        white-space: normal;
    }
}

