/**
 * VCC Innovation Core - Dashboard Styles
 * Design system matched to preview.html
 */

/* ====== THEME-LEVEL HEADING RESET ====== */
/* Prevents WordPress themes from blowing up headings inside the dashboard */

.vcc-dashboard h1,
.vcc-dashboard h2,
.vcc-dashboard h3,
.vcc-dashboard h4,
.vcc-dashboard h5,
.vcc-dashboard h6 {
    font-family: var(--vcc-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: normal !important;
    border: none !important;
}

/* ====== DARK MODE ====== */

[data-theme="dark"] .vcc-dashboard,
.vcc-dashboard[data-theme="dark"] {
    --vcc-bg-primary: #0A0E17;
    --vcc-bg-surface: #141B2D;
    --vcc-bg-elevated: #1E2940;
    --vcc-text-primary: #E7ECF0;
    --vcc-text-secondary: #8899A6;
    --vcc-text-muted: #536471;
    --vcc-accent: #00E5FF;
    --vcc-accent-gradient: linear-gradient(135deg, #00C9A7, #00E5FF);
    --vcc-accent-warm: #FFB347;
    --vcc-border: rgba(255,255,255,0.08);
    --vcc-shadow-sm: 0 0 0 1px rgba(255,255,255,0.05), 0 4px 16px rgba(0,0,0,0.3);
    --vcc-shadow-lg: 0 0 0 1px rgba(255,255,255,0.05), 0 16px 32px rgba(0,0,0,0.4);
}

[data-theme="dark"] .vcc-dashboard input,
[data-theme="dark"] .vcc-dashboard textarea,
[data-theme="dark"] .vcc-dashboard select,
.vcc-dashboard[data-theme="dark"] input,
.vcc-dashboard[data-theme="dark"] textarea,
.vcc-dashboard[data-theme="dark"] select {
    background: var(--vcc-bg-elevated, #1E2940) !important;
    color: var(--vcc-text-primary, #E7ECF0) !important;
    border-color: var(--vcc-border, rgba(255,255,255,0.08)) !important;
}

/* ====== DASHBOARD LAYOUT ====== */

.vcc-dashboard {
    font-family: var(--vcc-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    color: var(--vcc-text-primary, #0F1419);
    background: var(--vcc-bg-primary, #FAFAFA);
    min-height: 80vh;
}

.vcc-dashboard__navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: var(--vcc-bg-surface, #FFFFFF);
    border-bottom: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    box-shadow: var(--vcc-shadow-sm, 0 1px 3px rgba(0,0,0,0.04));
}

.vcc-navbar__welcome {
    font-size: 18px;
    font-weight: 700;
    color: var(--vcc-text-primary, #0F1419);
    margin: 0;
}

.vcc-navbar__welcome span {
    color: var(--vcc-accent, #00C9A7);
}

.vcc-navbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vcc-dashboard__container {
    display: flex;
    min-height: calc(80vh - 64px);
}

/* ====== SIDEBAR ====== */

.vcc-dashboard__sidebar {
    width: 260px;
    min-width: 260px;
    background: var(--vcc-bg-surface, #FFFFFF);
    border-right: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    padding: 24px 0;
}

.vcc-sidebar-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vcc-sidebar-nav__item--divider {
    height: 1px;
    background: var(--vcc-border, rgba(15, 20, 25, 0.06));
    margin: 12px 16px;
}

.vcc-sidebar-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--vcc-text-secondary, #536471);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.vcc-sidebar-nav__link:hover {
    color: var(--vcc-accent, #00C9A7);
    background: rgba(0, 201, 167, 0.05);
}

.vcc-sidebar-nav__link.active {
    color: var(--vcc-accent, #00C9A7);
    background: rgba(0, 201, 167, 0.08);
    font-weight: 600;
    border-right: 3px solid var(--vcc-accent, #00C9A7);
}

.vcc-sidebar-nav__link svg {
    flex-shrink: 0;
    stroke-width: 2;
}

.vcc-badge--new {
    background: var(--vcc-error, #FF4757);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
}

/* ====== MAIN CONTENT ====== */

.vcc-dashboard__content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

.vcc-dashboard__panel {
    display: none;
}

.vcc-dashboard__panel.active {
    display: block;
    animation: vccFadeIn 0.3s ease;
}

@keyframes vccFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== PANEL HEADER ====== */

.vcc-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.vcc-panel__title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--vcc-text-primary, #0F1419);
    margin: 0;
}

/* ====== KPI CARDS ====== */

.vcc-kpi-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.vcc-kpi-grid--4col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.vcc-kpi-card {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.vcc-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vcc-shadow-lg, 0 8px 24px rgba(0,0,0,0.12));
}

.vcc-kpi__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 201, 167, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--vcc-accent, #00C9A7);
}

.vcc-kpi__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--vcc-text-muted, #8899A6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
}

.vcc-kpi__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--vcc-text-primary, #0F1419);
    font-family: var(--vcc-font-mono, 'JetBrains Mono', monospace);
    margin: 0;
    line-height: 1.1;
}

.vcc-kpi__subtext {
    font-size: 12px;
    color: var(--vcc-text-muted, #8899A6);
    margin: 4px 0 0;
}

/* ====== PROGRESS BAR ====== */

.vcc-progress-section {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
    margin-bottom: 24px;
}

.vcc-progress__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--vcc-text-primary, #0F1419);
}

.vcc-progress-bar {
    height: 10px;
    background: var(--vcc-bg-elevated, #F2F4F8);
    border-radius: 5px;
    overflow: hidden;
}

.vcc-progress-bar__fill {
    height: 100%;
    background: var(--vcc-accent-gradient, linear-gradient(135deg, #00C9A7, #00E5FF));
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vcc-progress-text {
    font-size: 13px;
    color: var(--vcc-text-secondary, #536471);
    margin: 8px 0 0;
    font-family: var(--vcc-font-mono, 'JetBrains Mono', monospace);
}

/* ====== CONTRIBUTIONS ====== */

.vcc-contributions-container {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
}

.vcc-quarterly-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.vcc-quarterly-item {
    text-align: center;
    padding: 12px;
    background: var(--vcc-bg-elevated, #F2F4F8);
    border-radius: var(--vcc-radius-sm, 8px);
}

.vcc-quarterly-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--vcc-text-muted, #8899A6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.vcc-quarterly-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--vcc-text-primary, #0F1419);
    font-family: var(--vcc-font-mono, 'JetBrains Mono', monospace);
}

/* ====== ACTIVITY ====== */

.vcc-activity-section {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
}

.vcc-activity__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
}

.vcc-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
}

.vcc-activity-item:last-child {
    border-bottom: none;
}

.vcc-activity-icon {
    color: var(--vcc-accent, #00C9A7);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ====== TABLES ====== */

.vcc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.vcc-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vcc-text-muted, #8899A6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
}

.vcc-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    color: var(--vcc-text-primary, #0F1419);
}

.vcc-table__empty {
    text-align: center;
    color: var(--vcc-text-muted, #8899A6);
    padding: 32px 16px !important;
}

/* ====== FORMS ====== */

.vcc-form-section {
    margin-bottom: 32px;
}

.vcc-form-section__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--vcc-text-primary, #0F1419);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
}

.vcc-form-group {
    margin-bottom: 20px;
}

.vcc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--vcc-text-secondary, #536471);
    margin-bottom: 6px;
}

.vcc-form-group input[type="text"],
.vcc-form-group input[type="email"],
.vcc-form-group input[type="password"],
.vcc-form-group input[type="tel"],
.vcc-form-group input[type="url"],
.vcc-form-group input[type="number"],
.vcc-form-group textarea,
.vcc-form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--vcc-font, 'Inter', sans-serif);
    font-size: 14px;
    color: var(--vcc-text-primary, #0F1419);
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius-sm, 8px);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.vcc-form-group input:focus,
.vcc-form-group textarea:focus,
.vcc-form-group select:focus {
    outline: none;
    border-color: var(--vcc-accent, #00C9A7);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
}

.vcc-form-actions {
    padding-top: 16px;
}

/* ====== EMPTY STATE ====== */

.vcc-empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--vcc-text-muted, #8899A6);
}

.vcc-loading {
    text-align: center;
    padding: 32px;
    color: var(--vcc-text-muted, #8899A6);
}

/* ====== EARNINGS ====== */

.vcc-earnings-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.vcc-earnings-card {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
    text-align: center;
}

.vcc-earnings-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--vcc-text-muted, #8899A6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
}

.vcc-earnings-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--vcc-accent, #00C9A7);
    font-family: var(--vcc-font-mono, 'JetBrains Mono', monospace);
    margin: 0;
}

.vcc-earnings-breakdown {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
}

.vcc-earnings-breakdown-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
}

/* ====== CREDIT SECTION ====== */

.vcc-credit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vcc-credit-balance {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 32px;
    text-align: center;
}

.vcc-credit__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--vcc-text-secondary, #536471);
    margin: 0 0 12px;
}

.vcc-credit__amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--vcc-accent, #00C9A7);
    font-family: var(--vcc-font-mono, 'JetBrains Mono', monospace);
    margin: 0;
}

.vcc-credit-purchase {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 32px;
}

/* ====== PAYOUT FORM ====== */

.vcc-payout-history,
.vcc-payout-form-wrapper {
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    padding: 24px;
    margin-bottom: 24px;
}

.vcc-payout-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
}

/* ====== BOOKING TABS ====== */

.vcc-booking-tabs {
    display: flex;
    gap: 4px;
    background: var(--vcc-bg-elevated, #F2F4F8);
    border-radius: var(--vcc-radius-sm, 8px);
    padding: 4px;
    margin-bottom: 24px;
    width: fit-content;
}

.vcc-tab-btn {
    padding: 8px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--vcc-text-secondary, #536471);
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.vcc-tab-btn.active {
    background: var(--vcc-bg-surface, #FFFFFF);
    color: var(--vcc-accent, #00C9A7);
    box-shadow: var(--vcc-shadow-sm);
}

/* ====== RESPONSIVE ====== */

@media (max-width: 900px) {
    .vcc-dashboard__container {
        flex-direction: column;
    }

    .vcc-dashboard__sidebar {
        width: 100%;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
        padding: 12px 0;
    }

    .vcc-sidebar-nav__list {
        display: flex;
        overflow-x: auto;
        gap: 4px;
        padding: 0 12px;
    }

    .vcc-sidebar-nav__link {
        padding: 8px 16px;
        white-space: nowrap;
        font-size: 13px;
    }

    .vcc-sidebar-nav__link.active {
        border-right: none;
        border-bottom: 3px solid var(--vcc-accent, #00C9A7);
        border-radius: 6px 6px 0 0;
    }

    .vcc-sidebar-nav__item--divider {
        display: none;
    }

    .vcc-dashboard__content {
        padding: 20px;
    }

    .vcc-credit-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vcc-dashboard__navbar {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .vcc-quarterly-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vcc-kpi-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====== EXPLICIT HEADING SIZES (override any theme) ====== */

.vcc-dashboard .vcc-navbar__welcome {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.vcc-dashboard .vcc-panel__title {
    font-size: clamp(20px, 3vw, 26px) !important;
    font-weight: 800 !important;
}

.vcc-dashboard .vcc-kpi__label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--vcc-text-muted, #8899A6) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.vcc-dashboard .vcc-kpi__value {
    font-size: 24px !important;
    font-weight: 800 !important;
    font-family: var(--vcc-font-mono, 'JetBrains Mono', monospace) !important;
    color: var(--vcc-text-primary, #0F1419) !important;
}

.vcc-dashboard .vcc-kpi__subtext {
    font-size: 12px !important;
    color: var(--vcc-text-muted, #8899A6) !important;
}

.vcc-dashboard .vcc-progress__title {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.vcc-dashboard .vcc-form-section__title {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.vcc-dashboard .vcc-activity__title,
.vcc-dashboard .vcc-earnings-title,
.vcc-dashboard .vcc-earnings-breakdown-title,
.vcc-dashboard .vcc-payout-title,
.vcc-dashboard .vcc-credit__label {
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* ====== NOTIFICATION DROPDOWN ====== */

.vcc-notifications-wrapper {
    position: relative;
}

.vcc-notifications-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: var(--vcc-bg-surface, #FFFFFF);
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius, 12px);
    box-shadow: var(--vcc-shadow-lg, 0 8px 24px rgba(0,0,0,0.12));
    z-index: 1000;
    overflow: hidden;
}

.vcc-notifications-dropdown.open {
    display: block;
    animation: vccFadeIn 0.2s ease;
}

.vcc-notifications-dropdown__header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    font-size: 14px;
    font-weight: 700;
    color: var(--vcc-text-primary, #0F1419);
}

.vcc-notifications-dropdown__body {
    padding: 24px 20px;
    text-align: center;
    color: var(--vcc-text-muted, #8899A6);
    font-size: 14px;
}

.vcc-notifications-dropdown__body svg {
    display: block;
    margin: 0 auto 12px;
    opacity: 0.4;
}

/* ====== THEME TOGGLE BUTTON ====== */

.vcc-btn--icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06));
    border-radius: var(--vcc-radius-sm, 8px);
    color: var(--vcc-text-secondary, #536471);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.vcc-btn--icon:hover {
    color: var(--vcc-accent, #00C9A7);
    background: rgba(0, 201, 167, 0.05);
}

.vcc-dashboard .vcc-btn--secondary.vcc-btn--sm {
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: var(--vcc-radius-sm, 8px) !important;
    border: 1px solid var(--vcc-border, rgba(15, 20, 25, 0.06)) !important;
    background: transparent !important;
    color: var(--vcc-text-secondary, #536471) !important;
    text-decoration: none !important;
    transition: color 0.2s, border-color 0.2s !important;
}

.vcc-dashboard .vcc-btn--secondary.vcc-btn--sm:hover {
    color: var(--vcc-accent, #00C9A7) !important;
    border-color: var(--vcc-accent, #00C9A7) !important;
}

/* ====== TALENT CARDS ====== */

.vcc-talent-card {
    background: var(--vcc-bg-card, #fff);
    border: 1px solid var(--vcc-border, #E2E8F0);
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.vcc-talent-card:hover {
    box-shadow: 0 4px 20px rgba(0, 201, 167, 0.1);
    border-color: var(--vcc-accent, #00C9A7);
}

.vcc-talent-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vcc-talent-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vcc-accent, #00C9A7), #00B4D8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.vcc-talent-name {
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--vcc-text, #1E293B) !important;
}

.vcc-talent-level {
    font-size: 12px;
    color: var(--vcc-text-muted, #8896AB);
    text-transform: capitalize;
}

.vcc-talent-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.vcc-skill-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 201, 167, 0.08);
    color: var(--vcc-accent, #00C9A7);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.vcc-talent-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--vcc-border, #E2E8F0);
}

.vcc-talent-hours {
    font-size: 13px;
    color: var(--vcc-text-muted, #8896AB);
    font-weight: 500;
}

/* ====== STATUS BADGES ====== */

.vcc-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}

.vcc-status--pending-scope,
.vcc-status--approved-scope {
    background: #FEF3C7;
    color: #92400E;
}

.vcc-status--accepted,
.vcc-status--in-progress {
    background: #D1FAE5;
    color: #065F46;
}

.vcc-status--completed {
    background: #DBEAFE;
    color: #1E40AF;
}

.vcc-status--declined,
.vcc-status--cancelled {
    background: #FEE2E2;
    color: #991B1B;
}

/* ====== MODAL ====== */

.vcc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.vcc-modal.open {
    display: flex;
}

.vcc-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.vcc-modal__content {
    position: relative;
    background: var(--vcc-bg, #fff);
    border-radius: 16px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.vcc-modal__content--messaging {
    max-width: 500px;
    max-height: 80vh;
}

.vcc-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--vcc-border, #E2E8F0);
}

.vcc-modal__title {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--vcc-text, #1E293B) !important;
}

.vcc-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--vcc-text-muted, #8896AB);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.vcc-modal__close:hover {
    color: var(--vcc-text, #1E293B);
}

.vcc-modal__body {
    padding: 20px;
}

.vcc-modal__body .vcc-form-group {
    margin-bottom: 14px;
}

.vcc-modal__body .vcc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--vcc-text-secondary, #64748B);
    margin-bottom: 6px;
}

.vcc-modal__body input[type="text"],
.vcc-modal__body input[type="number"],
.vcc-modal__body input[type="date"],
.vcc-modal__body textarea,
.vcc-modal__body select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--vcc-border, #E2E8F0);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--vcc-text, #1E293B);
    background: var(--vcc-bg, #fff);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.vcc-modal__body input:focus,
.vcc-modal__body textarea:focus,
.vcc-modal__body select:focus {
    outline: none;
    border-color: var(--vcc-accent, #00C9A7);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

/* ====== BUTTON VARIANTS ====== */

.vcc-btn--outline {
    background: transparent !important;
    border: 1px solid var(--vcc-border, #E2E8F0) !important;
    color: var(--vcc-text-secondary, #64748B) !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.2s;
}

.vcc-btn--outline:hover {
    border-color: var(--vcc-accent, #00C9A7) !important;
    color: var(--vcc-accent, #00C9A7) !important;
}

/* ====== BADGE ====== */

.vcc-badge--new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: #EF4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}
