﻿/* Modern AI Theme - Architectural Object Detection */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-bg: #0f1419;
    --card-bg: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --neon-glow: 0 0 20px rgba(102, 126, 234, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #b0b8c5;
    /* Enhanced focused colors for prediction buttons */
    --fast-primary: #FF6B00;
    --fast-secondary: #FF9500;
    --fast-glow: rgba(255, 107, 0, 0.4);
    --fast-bg: rgba(255, 107, 0, 0.15);
    --fast-border: rgba(255, 107, 0, 0.4);
    --fast-text: #FFB74D;
    --deep-primary: #0066FF;
    --deep-secondary: #0095FF;
    --deep-glow: rgba(0, 102, 255, 0.4);
    --deep-bg: rgba(0, 102, 255, 0.15);
    --deep-border: rgba(0, 102, 255, 0.4);
    --deep-text: #4FC3F7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== STATIC BACKGROUND ===== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(15, 20, 25, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0 80px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #b0b8c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== UPLOAD SECTION ===== */
.upload-container {
    max-width: 800px;
    margin: 0 auto;
    min-height: 320px;
}

.upload-card {
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area {
    border: 3px dashed rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
}

    .upload-area:hover,
    .upload-area.dragover {
        border-color: #667eea;
        background: rgba(102, 126, 234, 0.1);
        transform: scale(1.02);
    }

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upload-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.upload-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===== IMAGE PREVIEW STYLES ===== */
.file-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

.file-preview .preview-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .file-preview .preview-image:hover {
        transform: scale(1.05);
        border-color: rgba(102, 126, 234, 0.5);
    }

.file-preview .preview-info {
    text-align: center;
}

    .file-preview .preview-info .fw-semibold {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        word-break: break-word;
        line-height: 1.4;
        color: var(--text-primary);
    }

    .file-preview .preview-info .text-muted {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        display: block;
        color: #cbd5e1;
    }

.file-preview .btn-outline-danger {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Preview Container for Results */
.preview-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

    .preview-container .preview-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .preview-container:hover .preview-image {
        transform: scale(1.02);
    }

.prediction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    color: white;
}

/* ===== ENHANCED PREDICTION BUTTONS WITH FOCUSED COLORS ===== */
.prediction-buttons {
    margin-top: 2rem;
    padding: 0 1rem;
}

    .prediction-buttons .btn-prediction {
        background: var(--glass-bg);
        border: 2px solid transparent;
        border-radius: 16px; /* Slightly tighter corners */
        padding: 1rem 1.5rem; /* Reduced from 1.5rem 2rem */
        color: var(--text-primary);
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-width: 200px;
        min-height: 100px; /* Set a specific, smaller height */
        backdrop-filter: blur(20px);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
    }

    /* Fast Prediction Button - VIBRANT ORANGE THEME */
    .prediction-buttons .fast-prediction {
        background: linear-gradient(135deg, var(--fast-bg) 0%, rgba(255, 149, 0, 0.15) 100%);
        border: 2px solid var(--fast-border);
    }

        .prediction-buttons .fast-prediction:hover:not(:disabled) {
            transform: translateY(-5px) scale(1.02);
            border-color: var(--fast-primary);
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(255, 149, 0, 0.25) 100%);
            box-shadow: 0 8px 30px var(--fast-glow), 0 0 0 1px rgba(255, 107, 0, 0.2);
        }

        .prediction-buttons .fast-prediction:active:not(:disabled) {
            transform: translateY(-2px) scale(1.01);
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.3) 0%, rgba(255, 149, 0, 0.3) 100%);
        }

    /* Deep Prediction Button - VIBRANT BLUE THEME */
    .prediction-buttons .deep-prediction {
        background: linear-gradient(135deg, var(--deep-bg) 0%, rgba(0, 149, 255, 0.15) 100%);
        border: 2px solid var(--deep-border);
    }

        .prediction-buttons .deep-prediction:hover:not(:disabled) {
            transform: translateY(-5px) scale(1.02);
            border-color: var(--deep-primary);
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 149, 255, 0.25) 100%);
            box-shadow: 0 8px 30px var(--deep-glow), 0 0 0 1px rgba(0, 102, 255, 0.2);
        }

        .prediction-buttons .deep-prediction:active:not(:disabled) {
            transform: translateY(-2px) scale(1.01);
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 149, 255, 0.3) 100%);
        }

    /* Button Content Styling */
    .prediction-buttons .btn-prediction i {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
        transition: all 0.3s ease;
    }

    .prediction-buttons .fast-prediction i {
        color: var(--fast-primary);
        text-shadow: 0 0 12px var(--fast-glow);
    }

    .prediction-buttons .deep-prediction i {
        color: var(--deep-primary);
        text-shadow: 0 0 12px var(--deep-glow);
    }

    .prediction-buttons .btn-prediction div {
        font-weight: 700;
        margin-bottom: 0.25rem;
        font-size: 1.1rem;
        letter-spacing: -0.01em;
    }

    .prediction-buttons .btn-prediction small {
        opacity: 0.9;
        font-size: 0.85rem;
        font-weight: 500;
    }

    /* Fast Prediction Text Colors */
    .prediction-buttons .fast-prediction div {
        background: linear-gradient(135deg, var(--fast-primary), var(--fast-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .prediction-buttons .fast-prediction small {
        color: var(--fast-text);
    }

    /* Deep Prediction Text Colors */
    .prediction-buttons .deep-prediction div {
        background: linear-gradient(135deg, var(--deep-primary), var(--deep-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .prediction-buttons .deep-prediction small {
        color: var(--deep-text);
    }

    /* Ripple Effect */
    .prediction-buttons .btn-prediction::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .prediction-buttons .fast-prediction::before {
        background: rgba(255, 107, 0, 0.2);
    }

    .prediction-buttons .deep-prediction::before {
        background: rgba(0, 102, 255, 0.2);
    }

    .prediction-buttons .btn-prediction:active::before {
        width: 100px;
        height: 100px;
    }

    /* Disabled State */
    .prediction-buttons .btn-prediction:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
        filter: grayscale(0.5);
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

        .prediction-buttons .btn-prediction:disabled:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transform: none !important;
        }

    /* Loading State */
    .prediction-buttons .btn-prediction.loading i {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success State Animation */
.prediction-buttons .btn-prediction.success {
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== RESULTS CONTAINER ===== */
.results-container {
    animation: slideDown 0.8s ease;
    margin-bottom: 3rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GLASS CARD STYLES ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), var(--neon-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .glass-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 126, 234, 0.3);
    }

/* ===== BUTTONS ===== */
.btn-neon {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
    cursor: pointer;
}

    .btn-neon:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
        color: white;
    }

.btn-outline-neon {
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline-neon:hover {
        background: #667eea;
        color: white;
        box-shadow: var(--neon-glow);
    }

/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 2rem 0;
}

/* Confidence Level Badge */
.confidence-badge-large {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.5s ease;
    backdrop-filter: blur(20px);
}

    .confidence-badge-large.high-confidence {
        border-color: #27ae60;
        box-shadow: 0 0 30px rgba(39, 174, 96, 0.3);
    }

    .confidence-badge-large.medium-confidence {
        border-color: #f39c12;
        box-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
    }

    .confidence-badge-large.low-confidence {
        border-color: #e74c3c;
        box-shadow: 0 0 30px rgba(231, 76, 60, 0.3);
    }

.confidence-score {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.confidence-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Predictions Grid */
.predictions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prediction-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

    .prediction-card.success {
        border-left-color: #27ae60;
    }

    .prediction-card.warning {
        border-left-color: #f39c12;
    }

    .prediction-card.info {
        border-left-color: #3498db;
    }

    .prediction-card:hover {
        transform: translateX(8px);
        background: rgba(255, 255, 255, 0.08);
    }

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.prediction-label {
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-transform: capitalize;
}

.confidence-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.confidence-meter {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.confidence-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
    background: var(--primary-gradient);
}

.prediction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Section Titles */
.section-title {
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 0.5rem;
}

/* ===== FEATURES GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        padding-left: 1.5rem;
    }

        .features-list li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #667eea;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

/* ===== ERROR & LOADING STATES ===== */
.error-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

/* Loading state for image preview */
.preview-image.loading {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Error state for image preview */
.preview-image.error {
    border-color: rgba(231, 76, 60, 0.5);
    background: rgba(231, 76, 60, 0.1);
}

/* Success state for image preview */
.preview-image.success {
    border-color: rgba(39, 174, 96, 0.5);
}

/* Shake animation */
.shake-animation {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* ===== MOBILE-OPTIMIZED PREDICTION BUTTONS ===== */
@media (max-width: 768px) {
    .prediction-buttons {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }

        .prediction-buttons .btn-prediction {
            min-width: 160px;
            padding: 1.25rem 1.5rem;
            border-radius: 18px;
            gap: 0.375rem;
        }

            .prediction-buttons .btn-prediction i {
                font-size: 1.5rem;
                margin-bottom: 0.125rem;
            }

            .prediction-buttons .btn-prediction div {
                font-size: 1rem;
            }

            .prediction-buttons .btn-prediction small {
                font-size: 0.8rem;
            }

        /* Larger touch targets for mobile */
        .prediction-buttons .btn-prediction {
            min-height: 80px;
        }
}

@media (max-width: 576px) {
    .prediction-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

        .prediction-buttons .btn-prediction {
            width: 100%;
            max-width: 280px;
            min-width: unset;
            padding: 1.5rem 2rem;
            border-radius: 20px;
        }

            .prediction-buttons .btn-prediction:hover:not(:disabled) {
                transform: translateY(-3px) scale(1.01);
            }

     
}

@media (max-width: 400px) {
    .prediction-buttons .btn-prediction {
        padding: 1.25rem 1.5rem;
        min-height: 75px;
    }

        .prediction-buttons .btn-prediction i {
            font-size: 1.375rem;
        }

        .prediction-buttons .btn-prediction div {
            font-size: 0.95rem;
        }

        .prediction-buttons .btn-prediction small {
            font-size: 0.75rem;
        }
}

/* ===== ENHANCED ACCESSIBILITY FOR PREDICTION BUTTONS ===== */
.prediction-buttons .btn-prediction:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

    .prediction-buttons .btn-prediction:focus:not(:focus-visible) {
        outline: none;
    }

/* High contrast mode support */
@media (prefers-contrast: high) {
    .prediction-buttons .btn-prediction {
        border-width: 3px;
    }

    .prediction-buttons .fast-prediction {
        border-color: var(--fast-primary);
        background: rgba(255, 107, 0, 0.1);
    }

    .prediction-buttons .deep-prediction {
        border-color: var(--deep-primary);
        background: rgba(0, 102, 255, 0.1);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .prediction-buttons .btn-prediction {
        transition: none;
    }

        .prediction-buttons .btn-prediction:hover:not(:disabled) {
            transform: none;
        }

        .prediction-buttons .btn-prediction::before {
            display: none;
        }
}

/* ===== BUTTON GROUP LAYOUT ENHANCEMENTS ===== */
.prediction-buttons .text-center {
    width: 100%;
}

.prediction-buttons .d-flex {
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .prediction-buttons .d-flex {
        gap: 1rem;
        width: 100%;
    }
}

/* Section title above buttons */
.prediction-buttons .mb-3 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
}

/* Warning message styling */
#buttonWarning {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
}

    #buttonWarning small {
        color: var(--fast-primary) !important;
        font-weight: 500;
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .upload-area {
        padding: 2rem 1rem;
    }

    .file-preview .preview-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .file-preview .preview-image {
        width: 350px;
        height: 350px;
    }

    .confidence-badge-large {
        padding: 1.5rem;
    }

    .confidence-score {
        font-size: 2rem;
    }

    .prediction-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .confidence-badge {
        align-self: flex-start;
    }

    .preview-container .preview-image {
        height: 300px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .file-preview .preview-image {
        width: 300px;
        height: 300px;
    }

    .preview-container .preview-image {
        height: 250px;
    }

    .file-preview .preview-content {
        padding: 1rem;
    }

    .prediction-overlay {
        padding: 1rem;
    }

    .file-preview .preview-info .fw-semibold {
        font-size: 0.9rem;
    }

    .file-preview .preview-info .text-muted {
        font-size: 0.8rem;
    }
}
