/* ============================================
   CANDIDATE PORTAL — Premium Design System
   Dark Mode + Tab Navigation + Rich Hero
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === LIGHT THEME VARIABLES === */
:root {
    --cp-bg: #FFEBD7;
    --cp-card-bg: #FFFFFF;
    --cp-text-primary: #502B0E;
    --cp-text-secondary: #724A24;
    --cp-text-muted: #946D43;
    --cp-text-heading: #2E1407;
    --cp-accent: #946D43;
    --cp-accent-hover: #724A24;
    --cp-accent-light: #D9C19D;
    --cp-accent-glow: rgba(148, 109, 67, 0.15);
    --cp-border: #D9C19D;
    --cp-shadow: rgba(46, 20, 7, 0.12);
    --cp-shadow-lg: rgba(46, 20, 7, 0.18);
    --cp-btn-bg: #946D43;
    --cp-btn-hover: #724A24;
    --cp-particle-color: rgba(148, 109, 67, 0.15);
    --cp-input-bg: rgba(255, 235, 215, 0.3);
    --cp-card-border: rgba(217, 193, 157, 0.5);
    --cp-success: #2E7D32;
    --cp-success-bg: rgba(46, 125, 50, 0.08);
    --cp-error: #C62828;
    --cp-error-bg: rgba(198, 40, 40, 0.08);
    --cp-info: #1565C0;
    --cp-info-bg: rgba(21, 101, 192, 0.06);
    --cp-hero-gradient: linear-gradient(135deg, #946D43 0%, #724A24 60%, #502B0E 100%);
    --cp-tab-bg: rgba(255, 235, 215, 0.5);
    --cp-tab-active: var(--cp-card-bg);
    --cp-section-divider: rgba(217, 193, 157, 0.3);
    --cp-hover-bg: rgba(148, 109, 67, 0.04);
}

/* === DARK THEME VARIABLES === */
[data-theme="dark"] {
    --cp-bg: #0f0f0f;
    --cp-card-bg: #1a1a1a;
    --cp-text-primary: #e8e0d8;
    --cp-text-secondary: #c4b8a8;
    --cp-text-muted: #8a7d6d;
    --cp-text-heading: #f5efe8;
    --cp-accent: #D9C19D;
    --cp-accent-hover: #FFEBD7;
    --cp-accent-light: rgba(217, 193, 157, 0.15);
    --cp-accent-glow: rgba(217, 193, 157, 0.1);
    --cp-border: rgba(217, 193, 157, 0.15);
    --cp-shadow: rgba(0, 0, 0, 0.3);
    --cp-shadow-lg: rgba(0, 0, 0, 0.5);
    --cp-btn-bg: #D9C19D;
    --cp-btn-hover: #FFEBD7;
    --cp-particle-color: rgba(217, 193, 157, 0.08);
    --cp-input-bg: rgba(255, 235, 215, 0.05);
    --cp-card-border: rgba(217, 193, 157, 0.1);
    --cp-success: #4ade80;
    --cp-success-bg: rgba(34, 197, 94, 0.12);
    --cp-error: #f87171;
    --cp-error-bg: rgba(239, 68, 68, 0.1);
    --cp-info: #60a5fa;
    --cp-info-bg: rgba(59, 130, 246, 0.08);
    --cp-hero-gradient: linear-gradient(135deg, #1a1a1a 0%, #252525 60%, #1a1a1a 100%);
    --cp-tab-bg: rgba(255, 255, 255, 0.04);
    --cp-tab-active: rgba(255, 255, 255, 0.08);
    --cp-section-divider: rgba(217, 193, 157, 0.1);
    --cp-hover-bg: rgba(217, 193, 157, 0.04);
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* === BODY === */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cp-bg);
    color: var(--cp-text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

/* === ANIMATED BACKGROUND === */
.cp-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--cp-bg);
    transition: background 0.3s ease;
}

.cp-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, var(--cp-accent-glow) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 70%, rgba(148, 109, 67, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 50%, var(--cp-accent-glow) 0%, transparent 50%);
    animation: cpBgPulse 8s ease-in-out infinite alternate;
}

@keyframes cpBgPulse {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.cp-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--cp-particle-color);
    pointer-events: none;
    animation: cpFloat linear infinite;
}

.cp-particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    top: 20%;
    animation-duration: 18s;
}

.cp-particle:nth-child(2) {
    width: 4px;
    height: 4px;
    left: 25%;
    top: 60%;
    animation-duration: 22s;
    animation-delay: 2s;
}

.cp-particle:nth-child(3) {
    width: 8px;
    height: 8px;
    left: 45%;
    top: 15%;
    animation-duration: 15s;
    animation-delay: 4s;
}

.cp-particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 65%;
    top: 45%;
    animation-duration: 20s;
    animation-delay: 1s;
}

.cp-particle:nth-child(5) {
    width: 7px;
    height: 7px;
    left: 80%;
    top: 25%;
    animation-duration: 17s;
    animation-delay: 3s;
}

.cp-particle:nth-child(6) {
    width: 3px;
    height: 3px;
    left: 15%;
    top: 80%;
    animation-duration: 24s;
    animation-delay: 5s;
}

@keyframes cpFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-60px) translateX(30px) scale(1.2);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-30px) translateX(-20px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-80px) translateX(15px) scale(1.1);
        opacity: 0.6;
    }
}


/* =============================================
   AUTH SCREENS (SIGNUP / SIGNIN)
   ============================================= */
.cp-auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: cpCardEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes cpCardEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-auth-card {
    background: var(--cp-card-bg);
    border: 1px solid var(--cp-card-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--cp-shadow), 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 48px 40px 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cp-auth-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 70px var(--cp-shadow-lg), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cp-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cp-accent), var(--cp-accent-light), var(--cp-accent), var(--cp-accent-light));
    background-size: 200% 100%;
    animation: cpShimmer 3s ease-in-out infinite;
}

@keyframes cpShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.cp-auth-brand {
    text-align: center;
    margin-bottom: 32px;
}

.cp-auth-brand .cp-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px var(--cp-shadow);
    animation: cpLogoEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes cpLogoEnter {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cp-auth-brand h1 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--cp-text-heading);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.cp-auth-brand p {
    font-size: 0.9rem;
    color: var(--cp-text-muted);
    font-weight: 400;
    line-height: 1.5;
}

.cp-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-auth-form.hidden {
    display: none;
}

.cp-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cp-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cp-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cp-input-icon {
    position: absolute;
    left: 14px;
    color: var(--cp-text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.cp-input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--cp-input-bg);
    border: 1.5px solid var(--cp-border);
    border-radius: 12px;
    color: var(--cp-text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
}

.cp-input-wrapper input::placeholder {
    color: var(--cp-text-muted);
    font-weight: 400;
    opacity: 0.7;
}

.cp-input-wrapper input:focus {
    border-color: var(--cp-accent);
    background: var(--cp-hover-bg);
    box-shadow: 0 0 0 4px var(--cp-accent-glow);
}

/* Primary button */
.cp-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--cp-accent) 0%, var(--cp-accent-hover) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px var(--cp-shadow);
}

[data-theme="dark"] .cp-btn {
    color: #1a1a1a;
}

.cp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--cp-shadow-lg);
}

.cp-btn:active {
    transform: translateY(0);
}

.cp-btn.loading {
    pointer-events: none;
    opacity: 0.85;
}

.cp-btn .btn-text {
    transition: opacity 0.2s ease;
}

.cp-btn.loading .btn-text {
    opacity: 0;
}

.cp-btn .btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFF;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    animation: cpSpin 0.7s linear infinite;
}

[data-theme="dark"] .cp-btn .btn-spinner {
    border-color: rgba(0, 0, 0, 0.2);
    border-top-color: #1a1a1a;
}

.cp-btn.loading .btn-spinner {
    opacity: 1;
}

@keyframes cpSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Toast / Error */
.cp-toast {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    animation: cpShake 0.4s ease;
}

.cp-toast.visible {
    display: flex;
}

.cp-toast.error {
    background: var(--cp-error-bg);
    border: 1px solid rgba(198, 40, 40, 0.2);
    color: var(--cp-error);
}

.cp-toast.success {
    background: var(--cp-success-bg);
    border: 1px solid rgba(46, 125, 50, 0.2);
    color: var(--cp-success);
}

.cp-toast .toast-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

@keyframes cpShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.cp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cp-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cp-back-link:hover {
    color: var(--cp-text-heading);
}


/* =============================================
   DASHBOARD — MAIN CONTAINER
   ============================================= */
.cp-dashboard {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    animation: cpCardEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* === TOP BAR === */
.cp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: var(--cp-card-bg);
    border: 1px solid var(--cp-card-border);
    border-radius: 14px;
    box-shadow: 0 2px 12px var(--cp-shadow);
    transition: background 0.3s, border-color 0.3s;
}

.cp-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cp-topbar-left .cp-logo-small {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px var(--cp-shadow);
}

.cp-topbar-left h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cp-text-heading);
    letter-spacing: -0.01em;
}

.cp-topbar-left p {
    font-size: 0.75rem;
    color: var(--cp-text-muted);
    margin-top: 2px;
}

.cp-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-topbar-right .cp-btn-sm {
    padding: 7px 14px;
    border: 1.5px solid var(--cp-border);
    background: transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cp-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cp-topbar-right .cp-btn-sm:hover {
    background: var(--cp-accent);
    color: #FFF;
    border-color: var(--cp-accent);
}

[data-theme="dark"] .cp-topbar-right .cp-btn-sm:hover {
    color: #1a1a1a;
}

.cp-topbar-right .cp-btn-sm.danger:hover {
    background: var(--cp-error);
    color: #FFF;
    border-color: var(--cp-error);
}


/* === HERO SECTION (replaces plain greeting) === */
.cp-hero {
    background: var(--cp-hero-gradient);
    border-radius: 18px;
    padding: 28px 28px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--cp-shadow-lg);
}

.cp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cp-hero-top {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cp-hero-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFF;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.cp-hero-info {
    flex: 1;
}

.cp-hero-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 2px;
}

.cp-hero-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.cp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.cp-hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: background 0.2s ease;
}

.cp-hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cp-hero-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    display: block;
    margin-bottom: 2px;
}

.cp-hero-stat .stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* === TAB NAVIGATION === */
.cp-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--cp-tab-bg);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--cp-card-border);
    transition: all 0.3s;
}

.cp-tab {
    flex: 1;
    padding: 11px 8px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cp-text-muted);
    cursor: pointer;
    border-radius: 9px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.cp-tab i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cp-tab.active {
    background: var(--cp-tab-active);
    color: var(--cp-text-heading);
    box-shadow: 0 2px 8px var(--cp-shadow);
}

[data-theme="dark"] .cp-tab.active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cp-tab:hover:not(.active) {
    color: var(--cp-text-secondary);
    background: var(--cp-hover-bg);
}

/* Tab content panels */
.cp-tab-panel {
    display: none;
    animation: cpFadeSlide 0.35s ease;
}

.cp-tab-panel.active {
    display: block;
}

@keyframes cpFadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === SECTION CARDS === */
.cp-section {
    background: var(--cp-card-bg);
    border: 1px solid var(--cp-card-border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px var(--cp-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s, border-color 0.3s;
    animation: cpSlideUp 0.5s ease both;
}

.cp-section:nth-child(2) {
    animation-delay: 0.05s;
}

.cp-section:nth-child(3) {
    animation-delay: 0.1s;
}

.cp-section:nth-child(4) {
    animation-delay: 0.15s;
}

.cp-section:nth-child(5) {
    animation-delay: 0.2s;
}

@keyframes cpSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-section:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--cp-shadow-lg);
}

.cp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--cp-section-divider);
}

.cp-section-header h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cp-text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cp-section-header h3 i {
    font-size: 1rem;
    color: var(--cp-accent);
    width: 20px;
    text-align: center;
}

.cp-section-header h3 .section-icon {
    font-size: 1.15rem;
    width: 20px;
    text-align: center;
    display: none;
    /* Hide emoji icons, use FA instead */
}

.cp-section-edit-btn {
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid var(--cp-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cp-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cp-section-edit-btn:hover {
    background: var(--cp-accent);
    color: #FFF;
    border-color: var(--cp-accent);
}

[data-theme="dark"] .cp-section-edit-btn:hover {
    color: #1a1a1a;
}

/* Data grid */
.cp-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cp-data-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cp-data-item.full-width {
    grid-column: 1 / -1;
}

.cp-data-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cp-data-value {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--cp-text-primary);
    line-height: 1.5;
}

.cp-data-value.empty {
    color: var(--cp-text-muted);
    font-style: italic;
    opacity: 0.7;
}

/* Edit mode */
.cp-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cp-edit-grid .cp-form-group.full-width {
    grid-column: 1/-1;
}

.cp-edit-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--cp-input-bg);
    border: 1.5px solid var(--cp-border);
    border-radius: 10px;
    color: var(--cp-text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
}

.cp-edit-input:focus {
    border-color: var(--cp-accent);
    background: var(--cp-hover-bg);
    box-shadow: 0 0 0 4px var(--cp-accent-glow);
}

.cp-edit-input::placeholder {
    color: var(--cp-text-muted);
    opacity: 0.6;
}

select.cp-edit-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23946D43' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.cp-edit-input {
    min-height: 80px;
    resize: vertical;
}

.cp-edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    grid-column: 1/-1;
}

.cp-edit-actions .cp-btn-save {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--cp-accent), var(--cp-accent-hover));
    color: #FFF;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

[data-theme="dark"] .cp-edit-actions .cp-btn-save {
    color: #1a1a1a;
}

.cp-edit-actions .cp-btn-save:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--cp-shadow);
}

.cp-edit-actions .cp-btn-cancel {
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid var(--cp-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cp-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cp-edit-actions .cp-btn-cancel:hover {
    background: var(--cp-hover-bg);
}

/* CV upload zone */
.cp-cv-zone {
    border: 2px dashed var(--cp-border);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cp-cv-zone:hover,
.cp-cv-zone.dragover {
    border-color: var(--cp-accent);
    background: var(--cp-hover-bg);
}

.cp-cv-zone .cv-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--cp-accent);
    opacity: 0.7;
}

.cp-cv-zone .cv-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cp-text-secondary);
    margin-bottom: 4px;
}

.cp-cv-zone .cv-hint {
    font-size: 0.76rem;
    color: var(--cp-text-muted);
}

.cp-cv-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.cp-cv-current {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--cp-info-bg);
    border: 1px solid rgba(21, 101, 192, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
}

.cp-cv-current .cv-file-icon {
    font-size: 1.3rem;
    color: var(--cp-info);
    flex-shrink: 0;
}

.cp-cv-current .cv-file-info {
    flex: 1;
}

.cp-cv-current .cv-file-info a {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--cp-info);
    text-decoration: none;
}

.cp-cv-current .cv-file-info a:hover {
    text-decoration: underline;
}

.cp-cv-current .cv-file-info p {
    font-size: 0.73rem;
    color: var(--cp-text-muted);
    margin-top: 2px;
}


/* === THEME TOGGLE === */
.cp-theme-toggle {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--cp-border);
    background: transparent;
    border-radius: 8px;
    color: var(--cp-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.cp-theme-toggle:hover {
    background: var(--cp-accent);
    color: #FFF;
    border-color: var(--cp-accent);
}

[data-theme="dark"] .cp-theme-toggle:hover {
    color: #1a1a1a;
}


/* === PROFILE STRENGTH === */
.cp-strength-section {
    padding: 20px 28px !important;
}

.cp-strength-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cp-strength-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cp-text-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-strength-info h3 i {
    color: var(--cp-accent);
    font-size: 0.9rem;
}

.cp-strength-percent {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cp-accent);
}

.cp-strength-track {
    width: 100%;
    height: 8px;
    background: var(--cp-accent-glow);
    border-radius: 8px;
    overflow: hidden;
}

.cp-strength-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.cp-strength-tip {
    font-size: 0.76rem;
    color: var(--cp-text-muted);
    margin-top: 8px;
    font-weight: 500;
}


/* === STATUS BADGES === */
.cp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.cp-status-badge.available {
    background: var(--cp-success-bg);
    color: var(--cp-success);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.cp-status-badge.unavailable {
    background: var(--cp-error-bg);
    color: var(--cp-error);
    border: 1px solid rgba(198, 40, 40, 0.2);
}


/* === GLOBAL NOTIFICATION === */
.cp-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px var(--cp-shadow-lg);
    animation: cpSlideIn 0.4s ease;
    max-width: 400px;
    background: var(--cp-card-bg);
    border: 1px solid var(--cp-card-border);
}

.cp-notification.visible {
    display: flex;
}

.cp-notification.success {
    border-color: rgba(46, 125, 50, 0.3);
    color: var(--cp-success);
}

.cp-notification.error {
    border-color: rgba(198, 40, 40, 0.3);
    color: var(--cp-error);
}

@keyframes cpSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* === SKELETON LOADING === */
.cp-skeleton {
    background: linear-gradient(90deg, var(--cp-accent-glow) 25%, rgba(217, 193, 157, 0.25) 50%, var(--cp-accent-glow) 75%);
    background-size: 200% 100%;
    animation: cpSkeleton 1.5s ease-in-out infinite;
    border-radius: 6px;
    height: 18px;
    width: 60%;
}

.cp-skeleton.short {
    width: 40%;
}

.cp-skeleton.full {
    width: 100%;
}

.cp-skeleton.circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.cp-skeleton.bar {
    height: 8px;
    width: 100%;
    border-radius: 4px;
}

@keyframes cpSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


/* === PASSWORD MODAL === */
.cp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    animation: cpFadeIn 0.3s ease;
}

.cp-modal-overlay.visible {
    display: flex;
}

@keyframes cpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cp-modal {
    background: var(--cp-card-bg);
    border: 1px solid var(--cp-card-border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px var(--cp-shadow-lg);
    width: 100%;
    max-width: 440px;
    animation: cpModalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cpModalEnter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cp-modal h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cp-text-heading);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-modal h3 i {
    color: var(--cp-accent);
}


/* =============================================
   CV EVALUATION SCREEN (Chat)
   ============================================= */
.cp-cv-screen {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cp-card-bg);
    border-left: 1px solid var(--cp-card-border);
    border-right: 1px solid var(--cp-card-border);
    transition: background 0.3s, border-color 0.3s;
}

.cp-cv-header {
    padding: 16px 20px;
    background: var(--cp-card-bg);
    border-bottom: 1px solid var(--cp-card-border);
    box-shadow: 0 2px 8px var(--cp-shadow);
    transition: background 0.3s, border-color 0.3s;
}

.cp-cv-header h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cp-text-heading);
}

.cp-cv-header .cp-logo-small {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

.cp-cv-chat {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, var(--cp-accent-glow) 0%, transparent 100%);
}

.cp-cv-msg {
    display: flex;
    max-width: 85%;
    animation: cpMsgIn 0.3s ease;
}

@keyframes cpMsgIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-cv-msg.user {
    align-self: flex-end;
    justify-content: flex-end;
}

.cp-cv-msg.assistant {
    align-self: flex-start;
}

.cp-cv-bubble {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--cp-text-primary);
    word-break: break-word;
}

.cp-cv-msg.assistant .cp-cv-bubble {
    background: var(--cp-hover-bg);
    border: 1px solid var(--cp-section-divider);
    border-bottom-left-radius: 4px;
}

.cp-cv-msg.user .cp-cv-bubble {
    background: linear-gradient(135deg, var(--cp-accent), var(--cp-accent-hover));
    color: #FFF;
    border-bottom-right-radius: 4px;
}

.cp-cv-bubble p {
    margin-bottom: 6px;
}

.cp-cv-bubble p:last-child {
    margin-bottom: 0;
}

.cp-cv-bubble ul {
    margin: 6px 0;
    padding-left: 18px;
}

.cp-cv-bubble ul li {
    margin-bottom: 4px;
}

.cp-cv-bubble strong {
    font-weight: 700;
}

.cp-cv-bubble code {
    background: var(--cp-accent-glow);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* Typing indicator */
.cp-typing {
    display: flex;
    align-self: flex-start;
    padding: 12px 18px;
    background: var(--cp-hover-bg);
    border: 1px solid var(--cp-section-divider);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
}

.cp-typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.cp-typing-dots span {
    width: 7px;
    height: 7px;
    background: var(--cp-accent);
    border-radius: 50%;
    animation: cpDotPulse 1.4s ease-in-out infinite both;
}

.cp-typing-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.cp-typing-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes cpDotPulse {

    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Input bar */
.cp-cv-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--cp-card-bg);
    border-top: 1px solid var(--cp-card-border);
    transition: background 0.3s, border-color 0.3s;
}

.cp-cv-attach {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--cp-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cp-cv-attach:hover {
    background: var(--cp-hover-bg);
}

.cp-cv-text-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--cp-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--cp-text-primary);
    background: var(--cp-input-bg);
    outline: none;
    transition: border-color 0.2s ease;
}

.cp-cv-text-input:focus {
    border-color: var(--cp-accent);
}

.cp-cv-text-input::placeholder {
    color: var(--cp-text-muted);
    opacity: 0.6;
}

.cp-cv-send {
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, var(--cp-accent), var(--cp-accent-hover));
    color: #FFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cp-cv-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--cp-shadow);
}


/* === PROFILE PREVIEW (Account Creation) === */
.cp-profile-preview {
    background: var(--cp-hover-bg);
    border: 1px solid var(--cp-section-divider);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.preview-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.preview-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cp-text-primary);
    text-align: right;
    word-break: break-word;
}


/* === CERTIFICATIONS === */
.cp-cert-list {
    margin-bottom: 16px;
}

.cp-cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--cp-hover-bg);
    border: 1px solid var(--cp-section-divider);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.cp-cert-item:hover {
    border-color: var(--cp-accent-light);
    box-shadow: 0 2px 8px var(--cp-shadow);
}

.cert-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--cp-accent);
}

.cert-info {
    flex: 1;
    min-width: 0;
}

.cert-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cp-accent-hover);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cert-name:hover {
    text-decoration: underline;
    color: var(--cp-text-heading);
}

.cert-size {
    font-size: 0.72rem;
    color: var(--cp-text-muted);
}

.cert-delete {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--cp-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cert-delete:hover {
    background: var(--cp-error-bg);
    color: var(--cp-error);
}


/* === FOCUS VISIBLE === */
.cp-edit-input:focus-visible,
.cp-btn:focus-visible,
.cp-btn-save:focus-visible {
    outline: 2px solid var(--cp-accent);
    outline-offset: 2px;
}


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

/* Smooth scrolling globally */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Tablet breakpoint */
@media (max-width: 768px) {
    .cp-dashboard {
        padding: 20px 16px 50px;
    }

    .cp-section {
        padding: 22px 22px;
    }

    .cp-modal {
        max-width: 400px;
        margin: 0 16px;
    }
}

/* Mobile breakpoint */
@media (max-width: 640px) {
    .cp-dashboard {
        padding: 12px 10px 40px;
    }

    /* Top bar: stack logo + actions vertically */
    .cp-topbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 14px;
    }

    .cp-topbar-left {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .cp-topbar-left .cp-logo-small {
        width: 32px;
        height: 32px;
    }

    .cp-topbar-left h2 {
        font-size: 0.9rem;
    }

    .cp-topbar-left p {
        font-size: 0.7rem;
    }

    .cp-topbar-right {
        width: 100%;
        justify-content: center;
    }

    .cp-topbar-right .cp-btn-sm {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.75rem;
        min-height: 40px;
    }

    .cp-theme-toggle {
        width: 40px;
        height: 40px;
    }

    /* Hero: compact on mobile */
    .cp-hero {
        padding: 20px 16px 18px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .cp-hero-top {
        gap: 12px;
    }

    .cp-hero-avatar {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .cp-hero-info h2 {
        font-size: 1.05rem;
    }

    .cp-hero-info p {
        font-size: 0.78rem;
    }

    .cp-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 16px;
    }

    .cp-hero-stat {
        padding: 10px 6px;
        border-radius: 10px;
    }

    .cp-hero-stat .stat-value {
        font-size: 1.05rem;
    }

    .cp-hero-stat .stat-label {
        font-size: 0.6rem;
    }

    /* Tabs: scrollable with icon-only labels */
    .cp-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 16px;
        border-radius: 10px;
        padding: 3px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cp-tabs::-webkit-scrollbar {
        display: none;
    }

    .cp-tab {
        min-width: max-content;
        padding: 10px 14px;
        font-size: 0.78rem;
        border-radius: 8px;
        gap: 6px;
    }

    .cp-tab i {
        font-size: 0.9rem;
        opacity: 1;
    }

    /* Sections: compact padding */
    .cp-section {
        padding: 16px 16px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .cp-section-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .cp-section-header h3 {
        font-size: 0.9rem;
        gap: 8px;
    }

    .cp-section-edit-btn {
        padding: 6px 12px;
        font-size: 0.74rem;
        min-height: 32px;
    }

    /* Data grids: single column on mobile */
    .cp-data-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cp-edit-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cp-edit-input {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .cp-edit-actions {
        flex-direction: row;
        gap: 8px;
    }

    .cp-edit-actions .cp-btn-save,
    .cp-edit-actions .cp-btn-cancel {
        flex: 1;
        text-align: center;
        justify-content: center;
        min-height: 44px;
    }

    /* Auth screens */
    .cp-auth-card {
        padding: 32px 20px 28px;
        border-radius: 16px;
    }

    .cp-auth-container {
        padding: 20px 14px;
    }

    .cp-auth-brand h1 {
        font-size: 1.4rem;
    }

    .cp-auth-brand p {
        font-size: 0.85rem;
    }

    .cp-auth-brand .cp-logo {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .cp-input-wrapper input {
        padding: 13px 13px 13px 40px;
        font-size: 0.92rem;
    }

    .cp-btn {
        padding: 14px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    /* CV upload zone */
    .cp-cv-zone {
        padding: 24px 16px;
    }

    .cp-cv-zone .cv-icon {
        font-size: 1.6rem;
    }

    .cp-cv-zone .cv-text {
        font-size: 0.84rem;
    }

    /* Notifications: full width on mobile */
    .cp-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        top: 12px;
    }

    /* Modal on mobile */
    .cp-modal {
        max-width: calc(100% - 24px);
        margin: 0 12px;
        padding: 28px 20px;
        border-radius: 16px;
    }

    .cp-modal h3 {
        font-size: 1rem;
    }

    /* Profile preview */
    .cp-profile-preview {
        padding: 14px 16px;
    }

    .preview-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .preview-value {
        text-align: left;
    }

    /* Strength section */
    .cp-strength-section {
        padding: 16px 16px !important;
    }
}

/* CV Screen: mobile-specific */
@media (max-width: 700px) {
    .cp-cv-screen {
        border: none;
    }

    .cp-cv-msg {
        max-width: 92%;
    }

    .cp-cv-header {
        padding: 12px 14px;
        padding-top: calc(12px + env(safe-area-inset-top, 0px));
    }

    .cp-cv-header h2 {
        font-size: 0.92rem;
    }

    .cp-cv-chat {
        padding: 14px 12px;
    }

    .cp-cv-input-bar {
        padding: 10px 12px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
    }

    .cp-cv-bubble {
        padding: 10px 14px;
        font-size: 0.86rem;
    }
}

/* Small phones (iPhone SE, Galaxy S series compact) */
@media (max-width: 380px) {
    .cp-topbar-left h2 {
        font-size: 0.85rem;
    }

    .cp-topbar-right .cp-btn-sm {
        font-size: 0.7rem;
        padding: 7px 8px;
    }

    .cp-hero {
        padding: 16px 14px;
    }

    .cp-hero-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cp-hero-info h2 {
        font-size: 0.95rem;
    }

    .cp-hero-stat .stat-value {
        font-size: 0.95rem;
    }

    .cp-tabs {
        padding: 2px;
    }

    .cp-tab {
        padding: 8px 10px;
        font-size: 0.72rem;
        gap: 4px;
    }

    .cp-tab i {
        font-size: 0.8rem;
    }

    .cp-auth-card {
        padding: 24px 16px 20px;
    }

    .cp-section {
        padding: 14px 12px;
    }

    .cp-data-label {
        font-size: 0.68rem;
    }

    .cp-data-value {
        font-size: 0.86rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .cp-auth-card {
        padding: 22px 14px 18px;
    }

    .cp-section {
        padding: 12px 10px;
    }

    .cp-hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cp-hero-stat {
        padding: 8px 4px;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .cp-auth-container {
        padding: 12px 16px;
        min-height: auto;
    }

    .cp-auth-card {
        padding: 20px;
    }

    .cp-cv-screen {
        height: 100vh;
        height: 100dvh;
    }
}