:root {
    /* Main Theme Colors - Deep Space / Cyberpunk Vibes */
    --bg-dark: #0f1219;
    --bg-card: rgba(30, 35, 48, 0.6);
    --bg-card-hover: rgba(45, 51, 69, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);

    /* Text Colors */
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-highlight: #ffffff;

    /* Accents & Gradients */
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);

    /* Status Colors */
    --success: #10b981;
    --danger: #f43f5e;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Effects */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 15px rgba(99, 102, 241, 0.5);
    --glass-blur: blur(12px);

    /* Layout */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility to hide elements */
.hidden {
    display: none !important;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    /* Dynamic Background */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Scrollbar Design */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sidebar Styling - Glass Pane */
.sidebar {
    width: 300px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    flex-shrink: 0;
    z-index: 50;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
}

.sidebar-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-highlight);
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.bucket-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 700;
}



/* Nav Menu (New) */
.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-top: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-item:hover {
    background-color: var(--bg-card-hover);
    color: var(--text-main);
    transform: translateX(4px);
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    color: #fff;
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

/* Bucket List Items */
.buckets-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bucket-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.bucket-item:hover {
    background-color: var(--bg-card-hover);
    color: var(--text-main);
    transform: translateX(4px);
    border-color: var(--border-color);
}

.bucket-item.active {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    color: #fff;
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

/* Create Bucket Button */
#createBucketBtn {
    width: 100%;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
    transition: all 0.3s;
}

#createBucketBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-color: var(--text-muted);
}

.stats-section {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.stats-section h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-weight: 600;
    color: var(--text-highlight);
    font-family: 'Inter', monospace;
}

/* Main Content Area */
.container {
    display: flex;
    width: 100%;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding-bottom: 2rem;
}

/* Global Progress Bar (Top) */
.global-progress-container {
    margin: 1.5rem 2rem 0 2rem;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

.global-progress-container.hidden {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
    margin-top: -80px;
    /* Collapse space */
}

.global-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.global-status {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.global-stats {
    font-family: 'Inter', monospace;
    opacity: 0.9;
}

.global-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.global-progress-bar-bg {
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.global-progress-bar {
    height: 100%;
    width: 0;
    background: var(--primary-gradient);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s ease-out;
}

/* Upload Section Header */
.upload-section {
    padding: 2rem 3rem 1rem 3rem;
    flex-shrink: 0;
}

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.upload-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-highlight);
}

.current-bucket {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-bucket::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

/* Drag & Drop Area */
.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background-color: rgba(99, 102, 241, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.upload-area.drag-over {
    border-color: var(--primary);
    background-color: rgba(99, 102, 241, 0.1);
    transform: scale(1.01);
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
    transition: transform 0.3s;
}

.upload-area:hover .upload-icon {
    transform: scale(1.1) rotate(5deg);
}

.upload-area h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-highlight);
}

/* Files Section Redesigned (Grid View) */
.files-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 3rem 1rem 3rem;
    overflow: hidden;
}

.files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-shrink: 0;
}

.files-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-highlight);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.files-actions {
    display: flex;
    gap: 1rem;
}

/* Grid Container (Modified for List View) */
.files-grid-container {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
    margin: -0.5rem;
}

/* List View Layout */
.files-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 2rem;
}

/* File Row (List Item) */
.file-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    /* Checkbox, Icon, Name, Meta, Actions */
    align-items: center;
    gap: 1rem;
    background: rgba(30, 35, 48, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
}

.file-row:hover {
    background: rgba(45, 51, 69, 0.6);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(2px);
}

.file-row.selected {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.file-row-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.file-row-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-highlight);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-row-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Inter', monospace;
    display: flex;
    gap: 1rem;
}

.file-row-actions {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    /* Show on hover or if selected? Better show on hover */
    transition: opacity 0.2s;
}

.file-row:hover .file-row-actions {
    opacity: 1;
}

/* Checkbox Styling */
.file-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.file-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.file-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Bulk Actions Header */
.bulk-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    animation: fadeIn 0.3s;
}

.bulk-actions.hidden {
    display: none;
}

/* File Card */
.file-card {
    background: rgba(30, 35, 48, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.file-card:hover {
    background: rgba(45, 51, 69, 0.6);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
}

.file-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.file-card:hover .file-card-icon {
    transform: scale(1.1);
}

.file-card-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-highlight);
    width: 100%;
    /* Allow multi-line */
    white-space: normal;
    word-break: break-word;
    /* Break long words if needed */
    line-height: 1.4;
    max-height: 2.8em;
    /* Limit to 2 lines usually, or remove for full height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Show max 2 lines to keep grid uniform */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
    min-height: 2.5em;
    /* Reserve space for 2 lines */
}

/* On hover, maybe show full? Or rely on tooltip title attribute */
/* .file-card:hover .file-card-name { -webkit-line-clamp: unset; max-height: none; background: var(--bg-card); z-index: 10; position:relative; } */
/* Keeping it simple with 2 lines for now to preserve grid layout, title attr handles full name */

.file-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-top: auto;
    /* Push to bottom if name is short */
}

/* File Card Overlay Actions */
.file-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 18, 25, 0.95);
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    border-top: 1px solid var(--border-color);
}

.file-card:hover .file-card-actions {
    transform: translateY(0);
}


/* Action Buttons (SVG Icons) */
.btn-icon-action {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-icon-action svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.btn-icon-action.download:hover {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-icon-action.delete:hover {
    background: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
    border-color: #f43f5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
}

/* Upload Queue */
.upload-queue {
    margin-top: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    /* Make it responsive to screen height */
    max-height: 65vh;
    min-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.upload-list {
    flex: 1;
    overflow-y: auto;
}

.queue-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    position: sticky;
    top: 0;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.upload-item {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.upload-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.upload-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.upload-filename {
    font-weight: 500;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.upload-controls {
    display: flex;
    gap: 0.5rem;
}

.btn-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
}

.btn-control:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    border-color: var(--text-muted);
}

.btn-control.cancel:hover {
    color: white;
    background: rgba(244, 63, 94, 0.8);
    border-color: rgba(244, 63, 94, 1);
}

.status-text {
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Progress Bars */
.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: width 0.3s ease;
}

.progress-bar.paused {
    background: var(--warning);
    opacity: 0.8;
    box-shadow: none;
}

.progress-bar.error {
    background: var(--danger);
    box-shadow: none;
}

.progress-bar.success {
    background: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Toast Notification */
.toast {
    background: rgba(30, 35, 48, 0.9);
    backdrop-filter: blur(12px);
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .upload-section,
    .files-section {
        padding: 1.5rem;
    }

    .search-input {
        width: 100%;
    }

    .files-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* View Sections (SPA) */
.view-section {
    display: none;
    /* Hidden by default */
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.view-section.active-view {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling (Missing previously) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.2s;
}

.modal.hidden {
    display: none !important;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.3s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.1rem;
    color: var(--text-highlight);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-body {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.modal-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: white;
    margin-top: 0.5rem;
}

.modal-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-hover);
}