h5 {
    font-weight: bold;
    color: #7b7b7b;
}

.borderz {
    padding: 1.25rem;
    border: 1.5px solid #f3f3f3;
    margin-bottom: 20px;
}

.tab-content {
    font-size: 1rem;
}

.button--fill {
    width: 100%;
}

.card {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0px;
}

.form-row {
    padding-bottom: 10px;

}

.nav-item .badge {
    margin-left: 10px;
    margin-top: -3px;
    padding: 0px;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: bold;
}

.form-control {
    height: 2.5rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 10px;
    transition: border .3s;
    background: white;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*font-size: 16px;*/
}

.form-control-plaintext {
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 0 10px;
    transition: border .3s;
    /*background: #f7f7f7;*/
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 15px;
}

.checkbox-spacer {
    margin-right: 15px;
}

.menu-items li a.active {
    font-weight: bold;
    color: green;
}

.sidebar .nav.sub-menu .nav-item .nav-link {
    color: #000000;
    font-size: 0.75rem;
}

.ivp table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

@media (max-width : 770px) {
    .ivp table {
        width: 100%;
    }
}

.table-row {
    min-height: 40px;
    border: 1px solid #f3f3f3;
    display: flex;
    flex-wrap: wrap;
}

/*table-borderedX {
    width: 100%
}*/

.ivp table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

.ivp table tr {
    /*background-color: #f8f8f8;*/
    border: 1px solid #ddd;
    padding: .35em;
    /* white-space:nowrap;*/
    white-space: normal;
}

.ivp table th,
.ivp table td {
    padding: .625em;
    text-align: left;
}

.nowrap {
    white-space: nowrap;
}


.ivp table tr:hover {
    background: #f3f3f3;
}

.ivp table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}


@media screen and (max-width: 480px) {
    .ivp table {
        border: 0;
        width: 100%;
    }

    .ivp table caption {
        font-size: 1.3em;
    }

    .ivp table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .ivp table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .ivp table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    .ivp table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .ivp table td:last-child {
        border-bottom: 0;
    }
}

/* Admin style guide
   - .section-header: hero/header card with h3 + small text
   - .section-title: bold section heading with right spacing
   - .card-elevated: elevated card container
   - .table-header: apply header border styles to any table
   - .status-pill: compact status badge, pair with .ok or .warn
   - Utilities: .col-w-*, .u-mt-*, .form-control-inline, .image-preview-sm
*/
.section-header {
    background: linear-gradient(135deg, #d9f0ff 0%, #b7def7 100%);
    color: #0f2a3b;
    border: 0;
}

.section-header h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.section-header small {
    color: rgba(15, 42, 59, 0.75);
}

.section-title {
    margin-right: 20px;
    font-weight: 700;
}

.card-elevated {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 42, 59, 0.08);
}

.table-header thead th,
.table-header thead td,
.card-elevated .table thead th,
.card-elevated .table thead td {
    border-bottom: 2px solid #e9edf3;
}

.table-borderedX {
    width: 100%;
    border-collapse: collapse;
}

.table-borderedX thead th,
.table-borderedX thead td {
    border-bottom: 2px solid #e9edf3;
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
}

.status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pill.ok {
    background: #e3f7e9;
    color: #1a7f37;
}

.status-pill.warn {
    background: #fdecea;
    color: #b42318;
}

.form-control-inline {
    min-width: 240px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    width: auto;
}

.col-w-7 {
    width: 7%;
}

.col-w-5 {
    width: 5%;
}

.col-w-8 {
    width: 8%;
}

.col-w-10 {
    width: 10%;
}

.col-w-12 {
    width: 12%;
}

.col-w-14 {
    width: 14%;
}

.col-w-15 {
    width: 15%;
}

.col-w-18 {
    width: 18%;
}

.col-w-20 {
    width: 20%;
}

.col-w-25 {
    width: 25%;
}

.col-w-30 {
    width: 30%;
}

.col-w-35 {
    width: 35%;
}

.col-w-40 {
    width: 40%;
}

.col-w-50 {
    width: 50%;
}

.col-w-55 {
    width: 55%;
}

.col-w-60 {
    width: 60%;
}

.col-w-70 {
    width: 70%;
}

.u-mt-20 {
    margin-top: 20px;
}

.u-mt-25 {
    margin-top: 25px;
}

.u-mt-30 {
    margin-top: 30px;
}

.u-mb-20 {
    margin-bottom: 20px;
}

.u-mr-15 {
    margin-right: 15px;
}

.u-mr-20 {
    margin-right: 20px;
}

.u-clear-both {
    clear: both;
}

.u-fw-700 {
    font-weight: 700;
}

.u-fs-15 {
    font-size: 15px;
}

.u-underline {
    text-decoration: underline;
}

.u-pad-10 {
    padding: 10px;
}

.u-w-100 {
    width: 100%;
}

.u-w-auto {
    width: auto;
}

.u-w-200 {
    width: 200px;
}

.badge-lg {
    font-size: 1rem;
    padding: 10px 15px;
}

.badge-light {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-spaced .btn {
    margin-bottom: 10px;
    margin-right: 10px;
}

.image-preview-sm {
    max-width: 220px;
    max-height: 220px;
}

.meta-label {
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.meta-value {
    font-weight: 600;
}

.chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px;
    background: #f1f5f9;
    color: #344054;
    font-size: 12px;
}

.card-muted {
    background-color: #ececec;
    padding-left: 20px;
    padding-top: 15px;
}

.audit-card {
    border: 1px solid #e6edf7;
    background: #fff;
}

.audit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(21, 35, 64, 0.12);
}

.audit-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    font-weight: 700;
}

.audit-status {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.audit-status.new {
    background: #fff5d9;
    color: #8a5a00;
}

.audit-status.approved {
    background: #e3f7e9;
    color: #1a7f37;
}

.audit-status.rejected {
    background: #fdecea;
    color: #b42318;
}

.audit-actions .btn {
    margin-right: 6px;
    margin-bottom: 6px;
}

.audit-media {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.audit-media-thumb-link {
    display: inline-block;
}

.audit-media-thumb {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.bizmatch-audit-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 8px;
}

.bizmatch-audit-tab {
    border: 1px solid #d7e0ef;
    background: #f8fafc;
    color: #1f2937;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.bizmatch-audit-tab:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
}

.bizmatch-audit-tab.active {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.18);
}

.audit-item.is-hidden {
    display: none;
}

.toolbar {
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.toolbar .nav-pills .nav-link {
    color: #495057;
    font-weight: 500;
    margin: 0 5px;
    border-radius: 30px;
    transition: background-color 0.2s, color 0.2s;
}

.toolbar .nav-pills .nav-link:hover {
    background-color: #f0f0f0;
    color: #000;
}

.toolbar .nav-pills .nav-link.active {
    background-color: #fd5417;
    color: #fff;
    font-weight: bold;
}

.stats-table {
    text-align: left;
}

.stats-table th,
.stats-table td {
    text-align: left;
    padding: 8px 12px;
}

.club-registrations-print {
    background-color: #f8f9fa;
    font-size: 0.9rem;
}

.club-registrations-print .alpha-heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid #aaa;
    padding-bottom: .1rem;
}

.club-registrations-print .card {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-shadow: none !important;
}

.club-registrations-print .card-body {
    padding: 6px 8px;
}

.club-registrations-print .card-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 3px;
}

.club-registrations-print .card-subtitle {
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.club-registrations-print .card-text {
    font-size: 0.75rem;
    margin-bottom: 0;
}

@media print {
    .club-registrations-print {
        background: #fff !important;
        font-size: 9pt;
    }

    .club-registrations-print .no-print {
        display: none !important;
    }

    .club-registrations-print .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .club-registrations-print .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 !important;
    }

    .club-registrations-print .col {
        width: 25% !important;
        max-width: 25% !important;
        padding: 0 !important;
    }

    .club-registrations-print .card {
        border: 1px solid #000;
        border-radius: 0;
        page-break-inside: avoid;
        margin: 0 !important;
    }

    .club-registrations-print .card-body {
        padding: 6px;
    }

    .club-registrations-print .alpha-heading {
        font-size: 11pt;
        margin: 10px 0 5px 0;
    }
}

.club-registrations-table table {
    border-collapse: collapse;
    font-size: 14px;
}

.club-registrations-table table th,
.club-registrations-table table td {
    border: 1px solid #000;
    padding: 8px 12px;
    text-align: left;
}

.club-registrations-table table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.club-registrations-table table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

@media print {
    .club-registrations-table {
        font-size: 12pt;
        margin: 0;
        -webkit-print-color-adjust: exact;
    }

    .club-registrations-table .no-print {
        display: none !important;
    }

    .club-registrations-table table {
        width: 100% !important;
    }

    .club-registrations-table table thead {
        background-color: #d9edf7 !important;
        -webkit-print-color-adjust: exact;
    }

    @page {
        size: A4 portrait;
        margin: 1cm;
    }
}

/* User Quick Hero Section */
.user-quick-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.user-quick-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.user-quick-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.user-quick-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
}

.user-quick-avatar {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #38bdf8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.user-quick-title {
    display: flex;
    flex-direction: column;
}

.user-quick-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
}

.user-quick-email {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.user-quick-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 1rem;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.user-quick-stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.stat-value-mono {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 12px;
    color: #38bdf8;
}

.user-quick-actions {
    display: flex;
    align-items: center;
}

.btn-user-quick {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-user-quick:hover {
    background: #38bdf8;
    border-color: #38bdf8;
    color: #0f172a;
    transform: translateY(-1px);
    text-decoration: none;
}

.user-quick-business {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.business-icon {
    color: #818cf8;
    font-size: 18px;
}

.business-info,
.business-id {
    display: flex;
    flex-direction: column;
}

.business-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}

.business-name {
    font-weight: 600;
    color: #818cf8 !important;
    text-decoration: none;
}

.business-name:hover {
    text-decoration: underline;
}

.business-id-value {
    font-family: monospace;
    font-size: 12px;
    color: #94a3b8 !important;
}

@media (max-width: 991px) {
    .user-quick-stats {
        border: 0;
        padding: 1rem 0;
        width: 100%;
    }

    .user-quick-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* BizMatch shared styling */
.bizmatch-card {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 42, 59, 0.08);
}

.bizmatch-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bizmatch-badge.ok {
    background: #e3f7e9;
    color: #1a7f37;
}

.bizmatch-badge.warn {
    background: #fdecea;
    color: #b42318;
}

.bizmatch-table thead th,
.bizmatch-card .table thead th {
    border-bottom: 2px solid #e9edf3;
}

.form-control-inline {
    min-width: 240px;
}

.bizmatch-col-id-sm {
    width: 12%;
}

.bizmatch-col-id-md {
    width: 14%;
}

.bizmatch-col-id-lg {
    width: 15%;
}

.bizmatch-col-20 {
    width: 20%;
}

.bizmatch-col-18 {
    width: 18%;
}

.bizmatch-mt-20 {
    margin-top: 20px;
}

.bizmatch-mt-25 {
    margin-top: 25px;
}

.bizmatch-mt-30 {
    margin-top: 30px;
}

.bizmatch-image-preview {
    max-width: 220px;
    max-height: 220px;
}

.chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px;
    background: #f1f5f9;
    color: #344054;
    font-size: 12px;
}

.meta-label {
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.meta-value {
    font-weight: 600;
}

.audit-card {
    border: 1px solid #e6edf7;
    background: #fff;
}

.audit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(21, 35, 64, 0.12);
}

.audit-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    font-weight: 700;
}

.audit-status {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.audit-status.new {
    background: #fff5d9;
    color: #8a5a00;
}

.audit-status.approved {
    background: #e3f7e9;
    color: #1a7f37;
}

.audit-status.rejected {
    background: #fdecea;
    color: #b42318;
}

.audit-actions .btn {
    margin-right: 6px;
    margin-bottom: 6px;
}

.audit-media {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.col-w-2 {
    width: 2%;
}

.default-page {
    margin: 0;
}

.default-page__logo {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PREMIUM BIZMATCH DESIGN SYSTEM
   ============================================ */

/* Hero Section */
.bizmatch-hero {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.bizmatch-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.bizmatch-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 186, 116, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.bizmatch-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.bizmatch-hero-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bizmatch-hero-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.bizmatch-hero-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bizmatch-hero h2 {
    color: #9a3412;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.bizmatch-hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: #c2410c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

.bizmatch-hero-stats {
    display: flex;
    gap: 2rem;
}

.bizmatch-hero-stat {
    text-align: center;
}

.bizmatch-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9a3412;
    line-height: 1.2;
}

.bizmatch-hero-stat-label {
    font-size: 12px;
    color: #b45309;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Navigation Toolbar */
.bizmatch-nav {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.bizmatch-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.bizmatch-nav-item:hover {
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
}

.bizmatch-nav-item.active {
    background: linear-gradient(135deg, #fd5417 0%, #ff7a45 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(253, 84, 23, 0.3);
}

.bizmatch-nav-item.active:hover {
    color: white;
}

.bizmatch-nav-item i {
    font-size: 16px;
}

/* Quick Stats Row */
.bizmatch-stats-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.bizmatch-stat-card {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.bizmatch-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
}

.bizmatch-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bizmatch-stat-icon.users {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
}

.bizmatch-stat-icon.profiles {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    color: white;
}

.bizmatch-stat-icon.audit {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.bizmatch-stat-icon.offers {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: white;
}

.bizmatch-stat-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.bizmatch-stat-info span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Enhanced Card Styling */
.bizmatch-section-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.bizmatch-section-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bizmatch-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    margin: 0;
}

.bizmatch-section-title i {
    color: #38bdf8;
    font-size: 18px;
}

.bizmatch-section-body {
    padding: 1.5rem;
}

/* Enhanced Filter Bar */
.bizmatch-filters {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
}

.bizmatch-filters .form-control,
.bizmatch-filters select {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    font-size: 14px;
    transition: all 0.2s;
    background: white;
}

.bizmatch-filters .form-control:focus,
.bizmatch-filters select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.bizmatch-filters .btn-primary {
    background: linear-gradient(135deg, #fd5417 0%, #ff7a45 100%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(253, 84, 23, 0.25);
    transition: all 0.2s;
}

.bizmatch-filters .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(253, 84, 23, 0.35);
}

.bizmatch-filters .btn-link {
    color: #64748b;
    font-weight: 500;
    text-decoration: none;
}

.bizmatch-filters .btn-link:hover {
    color: #0f172a;
}

/* Search Wrapper */
.bizmatch-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 180px;
    max-width: 300px;
}

.bizmatch-search-wrapper i {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
    font-size: 18px;
    z-index: 1;
}

.bizmatch-search-wrapper .form-control {
    padding-left: 38px !important;
}

/* Compact Filter Variant */
.bizmatch-filters-compact {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Override global margin-right on form-control for bizmatch components */
.bizmatch-filters .form-control,
.bizmatch-item-card .form-control {
    margin-right: 0;
}

.bizmatch-filters-compact .form-control {
    height: 36px;
    padding: 0.375rem 0.75rem;
    font-size: 13px;
    min-width: 0;
}

.bizmatch-filters-compact .bizmatch-search-wrapper {
    flex: 1 1 180px;
    max-width: 280px;
}

.bizmatch-filters-compact .bizmatch-search-wrapper .form-control {
    width: 100%;
}

.bizmatch-filters-compact .bizmatch-search-wrapper i {
    font-size: 16px;
    left: 10px;
}

.bizmatch-filters-compact .bizmatch-search-wrapper .form-control {
    padding-left: 32px !important;
}

.bizmatch-filters-compact select.form-control {
    flex: 0 0 auto;
    width: auto;
    min-width: 110px;
}

/* Date Range Grouping */
.bizmatch-date-range {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 0 0 auto;
}

.bizmatch-date-range .form-control {
    width: 100px;
    text-align: center;
}

.bizmatch-date-separator {
    color: #94a3b8;
    font-size: 14px;
    user-select: none;
}

.bizmatch-filters-compact .btn-sm {
    height: 36px;
    padding: 0.375rem 1rem;
    font-size: 13px;
    white-space: nowrap;
}

.bizmatch-filters-compact .btn-link.btn-sm {
    padding: 0.375rem 0.5rem;
}

.bizmatch-filters-compact .btn-primary.btn-sm {
    height: 36px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

/* Enhanced Table */
.bizmatch-table-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.bizmatch-premium-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.bizmatch-premium-table thead {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.bizmatch-premium-table thead th {
    padding: 1rem 1.25rem;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.bizmatch-premium-table thead th a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bizmatch-premium-table thead th a:hover {
    color: #0f172a;
}

.bizmatch-premium-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.15s ease;
}

.bizmatch-premium-table tbody tr:hover {
    background: #f8fafc;
}

.bizmatch-premium-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
}

.bizmatch-premium-table tbody td a {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
}

.bizmatch-premium-table tbody td a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Status Pills */
.bizmatch-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bizmatch-status.verified {
    background: #dcfce7;
    color: #15803d;
}

.bizmatch-status.unverified {
    background: #fef3c7;
    color: #92400e;
}

.bizmatch-status.visible {
    background: #dbeafe;
    color: #1d4ed8;
}

.bizmatch-status.hidden {
    background: #f1f5f9;
    color: #64748b;
}

.bizmatch-status i {
    font-size: 10px;
}

/* Empty State */
.bizmatch-empty {
    text-align: center;
    padding: 3rem 2rem;
}

.bizmatch-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: #94a3b8;
}

.bizmatch-empty h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.bizmatch-empty p {
    color: #64748b;
    margin: 0;
}

/* Pagination */
.bizmatch-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.bizmatch-pagination .total-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* BizMatch dashboard cards */
.bizmatch-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.bizmatch-item-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.bizmatch-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.bizmatch-item-thumb {
    display: block;
    height: 160px;
    background: #f1f5f9;
    overflow: hidden;
}

.bizmatch-item-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bizmatch-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.1rem 1.25rem;
    flex: 1;
}

.bizmatch-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bizmatch-item-badges {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.bizmatch-pill {
    background: #f1f5f9;
    color: #334155;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.bizmatch-item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.bizmatch-item-title a {
    color: #0f172a;
    text-decoration: none;
}

.bizmatch-item-title a:hover {
    text-decoration: underline;
}

.bizmatch-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: #475569;
    font-size: 13px;
}

.bizmatch-item-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bizmatch-item-row i {
    color: #94a3b8;
}

.bizmatch-item-actions {
    margin-top: auto;
}

.bizmatch-item-actions .btn {
    border-radius: 10px;
}

.bizmatch-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 1.25rem;
}

.bizmatch-filter-chip {
    background: #e2e8f0;
    color: #1f2937;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Settings Cards Grid */
.bizmatch-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.bizmatch-settings-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

.bizmatch-settings-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.bizmatch-settings-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.bizmatch-settings-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.bizmatch-settings-card h5 {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    font-size: 1.1rem;
}

.bizmatch-settings-card-body {
    padding: 1.5rem;
}

.bizmatch-settings-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bizmatch-settings-card .btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.bizmatch-settings-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bizmatch-hero {
        padding: 1.5rem;
    }

    .bizmatch-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .bizmatch-hero-stats {
        width: 100%;
        justify-content: space-around;
    }

    .bizmatch-nav {
        justify-content: center;
    }

    .bizmatch-stat-card {
        min-width: 100%;
    }

    .bizmatch-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .bizmatch-filters .form-control,
    .bizmatch-filters select {
        width: 100%;
        margin-right: 0;
    }

    .bizmatch-filters-compact {
        flex-wrap: wrap;
    }

    .bizmatch-filters-compact .form-control:first-of-type {
        flex: 1 1 100%;
        max-width: none;
    }

    .bizmatch-filters-compact select.form-control {
        width: 100%;
    }

    .bizmatch-date-range {
        width: 100%;
    }

    .bizmatch-date-range .form-control {
        flex: 1;
        width: auto;
    }
}

/* ========================================
   Expandable Sidebar Menu Styles
   ======================================== */

/* Parent menu item */
.sidebar .nav-item.nav-item-expandable {
    position: relative;
}

.sidebar .nav-item-expandable .nav-link-toggle {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #3e4b5b;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    border-left: 3px solid transparent;
}

.sidebar .nav-item-expandable .nav-link-toggle:hover {
    background: linear-gradient(90deg, rgba(253, 84, 23, 0.08) 0%, transparent 100%);
    color: #fd5417;
    border-left-color: #fd5417;
    text-decoration: none;
}

.sidebar .nav-item-expandable .nav-link-toggle .menu-icon {
    font-size: 18px;
    margin-right: 12px;
    color: #6c757d;
    transition: color 0.25s ease;
}

.sidebar .nav-item-expandable .nav-link-toggle:hover .menu-icon {
    color: #fd5417;
}

.sidebar .nav-item-expandable .nav-link-toggle .menu-title {
    flex: 1;
    font-weight: 500;
}

/* Arrow icon */
.sidebar .nav-item-expandable .menu-arrow {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #9ca3af;
}

.sidebar .nav-item-expandable.expanded .menu-arrow {
    transform: rotate(180deg);
}

/* Submenu container - CRITICAL: Remove bullets */
.sidebar .nav.sub-menu,
.sidebar ul.sub-menu,
ul.nav.sub-menu,
#communitySubMenu {
    display: none;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    background: #fafafa;
    border-left: 3px solid #fd5417;
    margin-left: 15px !important;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.25s ease;
}

.sidebar .nav-item-expandable.expanded .nav.sub-menu,
.sidebar .nav-item-expandable.expanded #communitySubMenu {
    display: flex;
    max-height: 800px;
    opacity: 1;
    padding: 8px 0 !important;
}

/* Submenu items - Remove bullets */
.sidebar .nav.sub-menu>li,
.sidebar .nav.sub-menu .nav-item,
#communitySubMenu>li,
#communitySubMenu .nav-item {
    margin: 0;
    padding: 0;
    list-style: none !important;
    list-style-type: none !important;
}

/* Remove any ::before bullets */
.sidebar .nav.sub-menu>li::before,
.sidebar .nav.sub-menu .nav-item::before,
#communitySubMenu>li::before,
#communitySubMenu .nav-item::before {
    display: none !important;
    content: none !important;
}

/* Remove dot bullets from submenu nav-link items */
.sidebar .nav.sub-menu .nav-item .nav-link:before,
.sidebar .nav.sub-menu .nav-item .nav-link::before,
#communitySubMenu .nav-item .nav-link:before,
#communitySubMenu .nav-item .nav-link::before,
.sidebar ul.sub-menu .nav-item .nav-link:before,
.sidebar ul.sub-menu .nav-item .nav-link::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.sidebar .nav.sub-menu .nav-item .nav-link,
#communitySubMenu .nav-item .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #555;
    font-size: 13px;
    transition: all 0.2s ease;
    border-radius: 0 6px 6px 0;
    margin: 2px 8px 2px 0;
    background: transparent;
}

.sidebar .nav.sub-menu .nav-item .nav-link:hover,
#communitySubMenu .nav-item .nav-link:hover {
    background: rgba(253, 84, 23, 0.1);
    color: #fd5417;
    text-decoration: none;
    padding-left: 20px;
}

.sidebar .nav.sub-menu .nav-item .nav-link i,
.sidebar .nav.sub-menu .nav-item .nav-link .menu-icon,
#communitySubMenu .nav-item .nav-link i,
#communitySubMenu .nav-item .nav-link .menu-icon {
    font-size: 14px;
    margin-right: 10px;
    color: #888;
    transition: color 0.2s ease;
    width: 18px;
    text-align: center;
}

.sidebar .nav.sub-menu .nav-item .nav-link:hover i,
.sidebar .nav.sub-menu .nav-item .nav-link:hover .menu-icon,
#communitySubMenu .nav-item .nav-link:hover i,
#communitySubMenu .nav-item .nav-link:hover .menu-icon {
    color: #fd5417;
}

.sidebar .nav.sub-menu .nav-item .nav-link .menu-title,
#communitySubMenu .nav-item .nav-link .menu-title {
    font-size: 13px;
}

/* Active state for submenu items */
.sidebar .nav.sub-menu .nav-item .nav-link.active,
.sidebar .nav.sub-menu .nav-item.active .nav-link,
#communitySubMenu .nav-item .nav-link.active,
#communitySubMenu .nav-item.active .nav-link {
    background: rgba(253, 84, 23, 0.15);
    color: #fd5417;
    font-weight: 600;
}

.sidebar .nav.sub-menu .nav-item .nav-link.active i,
.sidebar .nav.sub-menu .nav-item.active .nav-link i,
#communitySubMenu .nav-item .nav-link.active i,
#communitySubMenu .nav-item.active .nav-link i {
    color: #fd5417;
}

/* Expanded parent highlight */
.sidebar .nav-item-expandable.expanded>.nav-link-toggle {
    background: linear-gradient(90deg, rgba(253, 84, 23, 0.06) 0%, transparent 100%);
    border-left-color: #fd5417;
    color: #fd5417;
}

.sidebar .nav-item-expandable.expanded>.nav-link-toggle .menu-icon {
    color: #fd5417;
}

/* ============================================
   ADMIN DASHBOARD NAVIGATION SYSTEM
   Premium Design with Rich Gradients
   ============================================ */

/* Hero Section - Compact Enhanced Gradient */
.admin-dashboard-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 70%, #475569 100%);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.admin-dashboard-hero::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(253, 84, 23, 0.25) 0%, rgba(253, 84, 23, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.admin-dashboard-hero::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.admin-dashboard-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-dashboard-hero-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-dashboard-hero-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fd5417 0%, #ff6b35 50%, #ff8c5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow:
        0 8px 20px rgba(253, 84, 23, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(253, 84, 23, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }

    50% {
        box-shadow: 0 15px 40px rgba(253, 84, 23, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    }
}

.admin-dashboard-hero h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.admin-dashboard-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Navigation Section */
.admin-nav-section {
    margin-bottom: 2.5rem;
}

.admin-nav-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
    background-size: 100% 2px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.admin-nav-section-title i {
    color: #fd5417;
    font-size: 1.35rem;
    filter: drop-shadow(0 2px 4px rgba(253, 84, 23, 0.3));
}

/* Navigation Grid */
.admin-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.admin-nav-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* Navigation Card - Premium Button Style */
.admin-nav-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #1e293b;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.06),
        0 1px 3px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient border effect on hover */
.admin-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #fd5417 0%, #ff7a45 50%, #fbbf24 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shine effect */
.admin-nav-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.5s ease;
}

.admin-nav-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(253, 84, 23, 0.15),
        0 8px 20px rgba(15, 23, 42, 0.1);
    border-color: transparent;
    text-decoration: none;
    color: #1e293b;
}

.admin-nav-card:hover::before {
    opacity: 1;
}

.admin-nav-card:hover::after {
    left: 100%;
}

.admin-nav-card:active {
    transform: translateY(-2px) scale(1.01);
}

.admin-nav-card--small {
    padding: 1rem 1.25rem;
    border-radius: 14px;
}

.admin-nav-card--small .admin-nav-card-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 12px;
}

/* Card Icon - Enhanced Gradients */
.admin-nav-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
    color: #0284c7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.admin-nav-card:hover .admin-nav-card-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

/* Card Content */
.admin-nav-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.admin-nav-card-title {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.admin-nav-card-desc {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Card Arrow - Enhanced */
.admin-nav-card-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.3s ease;
}

.admin-nav-card:hover .admin-nav-card-arrow {
    background: linear-gradient(135deg, #fd5417 0%, #ff7a45 100%);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(253, 84, 23, 0.4);
}

/* Color Variants for Main Modules - Rich Gradients */
.admin-nav-card--users .admin-nav-card-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 50%, #60a5fa 100%);
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.admin-nav-card--directory .admin-nav-card-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #86efac 50%, #4ade80 100%);
    color: #15803d;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.admin-nav-card--classifieds .admin-nav-card-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 50%, #fbbf24 100%);
    color: #b45309;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.admin-nav-card--afisha .admin-nav-card-icon {
    background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 50%, #f472b6 100%);
    color: #be185d;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.admin-nav-card--news .admin-nav-card-icon {
    background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 50%, #818cf8 100%);
    color: #4338ca;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.admin-nav-card--newsletter .admin-nav-card-icon {
    background: linear-gradient(135deg, #cffafe 0%, #67e8f9 50%, #22d3ee 100%);
    color: #0e7490;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.admin-nav-card--comments .admin-nav-card-icon {
    background: linear-gradient(135deg, #f3e8ff 0%, #d8b4fe 50%, #c084fc 100%);
    color: #7e22ce;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.admin-nav-card--club .admin-nav-card-icon {
    background: linear-gradient(135deg, #fff7ed 0%, #fdba74 50%, #fb923c 100%);
    color: #c2410c;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.admin-nav-card--bizmatch .admin-nav-card-icon {
    background: linear-gradient(135deg, #fef2f2 0%, #fca5a5 50%, #f87171 100%);
    color: #b91c1c;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-dashboard-hero {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .admin-dashboard-hero h2 {
        font-size: 1.5rem;
    }

    .admin-dashboard-hero-icon {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .admin-nav-grid {
        grid-template-columns: 1fr;
    }

    .admin-nav-grid--compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-nav-card {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .admin-nav-grid--compact {
        grid-template-columns: 1fr;
    }
}

/* Mobile padding for content-wrapper */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px;
    }
}