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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-darker: #4338ca;
    --primary-light: #a5b4fc;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;

    --surface: #ffffff;
    --surface-raised: #ffffff;
    --surface-overlay: rgba(255, 255, 255, 0.8);
    --bg: #f8faff;
    --bg-subtle: #f1f5f9;

    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    --success: #10b981;
    --success-bg: #ecfdf5;
    --warning: #f59e0b;
    --warning-bg: #fffbeb;
    --danger: #ef4444;
    --danger-bg: #fef2f2;

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15);

    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

main { flex: 1; overflow-x: hidden; }

/* ============ NAVBAR ============ */

.app-navbar {
    background: var(--surface-overlay);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.app-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: -0.025em;
}

.nav-brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    background: var(--primary-50);
    color: var(--primary-dark);
}

.nav-links .btn-nav-primary {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
}

.nav-links .btn-nav-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0 10px;
    cursor: pointer;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.nav-shell {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 320px);
    height: 100dvh;
    background: var(--surface);
    border-left: 1px solid var(--border-light);
    box-shadow: -12px 0 28px rgba(15, 23, 42, 0.16);
    transform: translateX(102%);
    visibility: hidden;
    transition: transform var(--transition-slow), visibility 0s linear 0.3s;
    z-index: 1200;
    padding: 0.85rem 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-shell.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--transition-slow), visibility 0s linear 0s;
}

.nav-shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.2rem 0.45rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.25rem;
}

.nav-shell-header strong {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.nav-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.nav-shell .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.35rem 0 0.25rem;
}

.nav-shell .nav-links a {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
    z-index: 1100;
}

.nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
}

/* ============ BUTTONS ============ */

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
    min-height: 48px;
    text-decoration: none;
}

.btn-primary-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    color: white;
}

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

.btn-primary-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
    text-decoration: none;
}

.btn-secondary-modern:hover {
    border-color: var(--primary-light);
    background: var(--primary-50);
    color: var(--primary-dark);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--bg-subtle);
    color: var(--text);
}

.btn-block { width: 100%; }

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

.card-modern {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card-modern:hover {
    box-shadow: var(--shadow);
}

.card-modern-elevated {
    background: var(--surface);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card-modern-elevated:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ============ HERO ============ */

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #312e81 0%, #4338ca 30%, #6366f1 60%, #818cf8 100%);
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    min-height: 52px;
}

.hero .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
}

.hero .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* ============ FEATURES ============ */

.features {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.features-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.features-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-icon-wrap.purple { background: var(--primary-100); }
.feature-icon-wrap.green { background: var(--success-bg); }
.feature-icon-wrap.amber { background: var(--warning-bg); }

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.015em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============ AUTH PAGES ============ */

.auth-page {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: calc(100vh - 60px);
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg) 40%);
}

.auth-wrapper {
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.375rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-form-card {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--surface);
    transition: var(--transition);
    outline: none;
    min-height: 48px;
    box-sizing: border-box;
    max-width: 100%;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.form-input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--danger);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-footer a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ============ ALERTS ============ */

.alert-modern {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 1rem;
    animation: alertSlideIn 0.3s ease;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
    box-sizing: border-box;
}

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

.alert-modern.error {
    background: var(--danger-bg);
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-modern.success {
    background: var(--success-bg);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-dismiss {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    padding: 0;
    line-height: 1;
}

.alert-dismiss:hover { opacity: 1; }

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

.dashboard {
    padding: 1.5rem 1rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.dash-header {
    margin-bottom: 1.75rem;
}

.dash-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 0.25rem;
}

.dash-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.25rem;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-card .stat-value {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-card.accent-purple .stat-value { color: var(--primary); }
.stat-card.accent-green .stat-value { color: var(--success); }
.stat-card.accent-amber .stat-value { color: var(--warning); }
.stat-card.accent-red .stat-value { color: var(--danger); }

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.action-card {
    padding: 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: 1.5px solid var(--border-light);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.action-card:hover:not(.disabled) {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.action-card.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.action-card .action-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.action-icon.purple { background: var(--primary-100); }
.action-icon.green { background: var(--success-bg); }
.action-icon.blue { background: #e0f2fe; }

.action-card .action-label {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text);
}

.action-card .action-badge {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    background: var(--bg-subtle);
    color: var(--text-muted);
}

.empty-state-modern {
    padding: 3rem 1.5rem;
    text-align: center;
}

.empty-state-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.empty-state-modern h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.empty-state-modern p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============ FOOTER ============ */

.app-footer {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============ CONFIDENCE ============ */

.confidence-high { color: var(--success); }
.confidence-medium { color: var(--warning); }
.confidence-low { color: var(--danger); }

.badge-confidence {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-confidence.high { background: var(--success-bg); color: #065f46; }
.badge-confidence.medium { background: var(--warning-bg); color: #92400e; }
.badge-confidence.low { background: var(--danger-bg); color: #991b1b; }

/* ============ SPINNER ============ */

.spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.btn-loading .spinner {
    border-color: rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary);
}

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

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 640px) {
    .hero {
        padding: 6rem 2rem 5rem;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .auth-form-card {
        padding: 2.5rem;
    }

    .dashboard {
        padding: 2rem 1.5rem 3rem;
    }

    .dash-header h1 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .app-navbar .container {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-shell {
        width: auto;
        max-height: none;
        overflow: visible;
        margin-left: auto;
        position: static;
        height: auto;
        transform: none;
        transition: none;
        box-shadow: none;
        border-left: none;
        padding: 0;
        display: block;
        background: transparent;
    }

    .nav-shell-header {
        display: none;
    }

    .nav-close {
        display: none;
    }

    .nav-backdrop {
        display: none;
    }

    .nav-shell .nav-links {
        width: auto;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 0.25rem;
    }

    .nav-shell .nav-links a {
        width: auto;
        min-height: auto;
    }

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

    .nav-shell {
        position: static;
        visibility: visible;
        transition: none;
    }
}

@media (max-width: 600px) {
    .modal-overlay {
        padding: 0 !important;
        align-items: stretch !important;
    }
    .modal-card {
        max-width: 100% !important;
        margin-top: 0 !important;
        max-height: 100vh !important;
        min-height: 100vh !important;
        border-radius: 0 !important;
        display: flex;
        flex-direction: column;
    }
    .modal-header {
        padding: 1rem !important;
        flex-shrink: 0;
    }
    .modal-body {
        padding: 1rem !important;
        overflow-y: auto;
        flex: 1;
        -webkit-overflow-scrolling: touch;
    }
    .modal-footer {
        padding: 0.75rem 1rem !important;
        flex-shrink: 0;
    }
}
