/* ==========================================================================
   AutoBizz — Dark theme matching bg.jpeg
   Navy base (#0a1929), red accent (#e53935), cyan accent (#29b6f6)
   ========================================================================== */

:root {
    color-scheme: dark;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Core palette */
    --bg-primary: #0a1929;
    --bg-secondary: #0d2137;
    --bg-card: rgba(10, 25, 41, 0.82);
    --bg-card-hover: rgba(13, 33, 55, 0.92);
    --bg-input: rgba(10, 25, 41, 0.6);

    /* Accent colours from bg.jpeg stripes */
    --accent-red: #e53935;
    --accent-red-dark: #c62828;
    --accent-red-glow: rgba(229, 57, 53, 0.15);
    --accent-cyan: #29b6f6;
    --accent-cyan-dark: #0288d1;
    --accent-cyan-glow: rgba(41, 182, 246, 0.15);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border-soft: rgba(148, 163, 184, 0.2);
    --border-accent: rgba(41, 182, 246, 0.35);

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.5);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

body {
    min-height: 100vh;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: url('../bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

h1 { font-size: 26px; font-weight: 700; }
h2 { font-size: 22px; font-weight: 700; }
h3 { font-size: 18px; font-weight: 600; }

.subtitle { color: var(--text-secondary); font-size: 14px; margin-top: 4px; }

/* ==========================================================================
   App Shell
   ========================================================================== */

.app-shell {
    min-height: 100vh;
    backdrop-filter: blur(1px);
    background: rgba(10, 25, 41, 0.25);
}

.app-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.top-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(10, 25, 41, 0.92);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    text-decoration: none;
}
.brand:hover { text-decoration: none; opacity: 0.9; }

.nav-spacer { flex: 1; }

.nav-user {
    font-size: 14px;
    color: var(--text-secondary);
}
.nav-role { color: var(--text-muted); }

.nav-logout {
    font-size: 13px;
    padding: 6px 14px;
}

/* ==========================================================================
   Card View (login / register / centered forms)
   ========================================================================== */

.card-view {
    max-width: 420px;
    margin: 80px auto 0;
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-elevated);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-view form { display: flex; flex-direction: column; gap: 14px; }

.card-footer {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--border-soft);
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

@media (max-width: 640px) {
    .page-header { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Tab Bar
   ========================================================================== */

.tab-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 4px;
    max-width: 480px;
    border: 1px solid var(--border-soft);
    margin-bottom: 20px;
}

.tab-button {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.tab-button:hover { color: var(--text-primary); }

.tab-button.active {
    background: var(--accent-cyan-glow);
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red));
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    font-family: inherit;
    text-decoration: none;
}
.primary-button:hover { opacity: 0.9; text-decoration: none; }
.primary-button:active { transform: scale(0.98); }
.primary-button:disabled { opacity: 0.5; cursor: not-allowed; }

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.1);
    color: var(--accent-cyan);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(41, 182, 246, 0.2);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    text-decoration: none;
}
.secondary-button:hover { background: rgba(41, 182, 246, 0.18); text-decoration: none; }

.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 13px;
    border: 1px solid var(--border-soft);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    text-decoration: none;
}
.small-button:hover { background: rgba(255, 255, 255, 0.14); color: var(--text-primary); text-decoration: none; }
.small-button.active { background: var(--accent-cyan-glow); color: var(--accent-cyan); border-color: var(--border-accent); }
.small-button.danger { background: var(--accent-red-glow); color: #ef5350; border-color: rgba(229, 57, 53, 0.25); }
.small-button.danger:hover { background: rgba(229, 57, 53, 0.22); }

.link-button {
    background: none;
    border: none;
    color: var(--accent-cyan);
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.full-width { width: 100%; }

.button-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field > span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(41, 182, 246, 0.15);
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input[type="file"] {
    padding: 8px;
    font-size: 13px;
}

/* Password wrapper with visibility toggle */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 36px;
}

.password-wrapper.compact input {
    padding: 4px 32px 4px 8px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
    color: var(--text-primary);
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

.password-toggle:hover {
    color: var(--text-primary);
}

.password-mismatch {
    font-size: 12px;
    color: var(--accent-red);
    margin-top: 2px;
}

/* Compact password change form in user cards */
.password-change-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.panel-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auction-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 14px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.15s, border-color 0.15s;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font-family: inherit;
    width: 100%;
}
.auction-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    text-decoration: none;
}

.auction-card img,
.detail-card > img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.auction-card h3 { color: var(--text-primary); }
.auction-card p { font-size: 14px; color: var(--text-secondary); }
.auction-card .meta { font-size: 12px; color: var(--text-muted); }

.detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.detail-card > img { height: 240px; }

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ==========================================================================
   Card Grid
   ========================================================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* ==========================================================================
   Badges
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--accent-cyan-glow);
    color: var(--accent-cyan);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.badge-red {
    background: var(--accent-red-glow);
    color: var(--accent-red);
}

.status-active { color: #4caf50; }
.status-suspended { color: var(--accent-red); }
.status-closed { color: var(--text-muted); }

/* ==========================================================================
   Flash Messages
   ========================================================================== */

.flash-messages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.flash {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
}

.flash-error { border-left: 3px solid var(--accent-red); }
.flash-success { border-left: 3px solid #4caf50; }
.flash-info { border-left: 3px solid var(--accent-cyan); }

/* ==========================================================================
   Toast (OOB swap)
   ========================================================================== */

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: rgba(10, 25, 41, 0.95);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-elevated);
    font-size: 14px;
    z-index: 1000;
    max-width: 360px;
    animation: toast-in 0.3s ease;
    backdrop-filter: blur(12px);
}

.toast-success { border-left: 3px solid #4caf50; }
.toast-error { border-left: 3px solid var(--accent-red); }
.toast-info { border-left: 3px solid var(--accent-cyan); }

@keyframes toast-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Image Preview
   ========================================================================== */

.image-preview-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.preview-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
}

.preview-item {
    position: relative;
    display: inline-block;
    width: 80px;
}

.preview-item .preview-thumb {
    display: block;
}

.upload-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.upload-progress-fill {
    height: 100%;
    width: 0%;
    background: #4caf50;
    border-radius: 2px;
    transition: width 0.15s ease;
}

.upload-progress-fill.upload-error {
    width: 100%;
    background: var(--accent-red);
}

.preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
}

.preview-item:hover .preview-remove {
    opacity: 1;
}

/* Image gallery in detail view */
.image-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.image-gallery img {
    height: 180px;
    width: auto;
    min-width: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    cursor: pointer;
}

.lightbox-img {
    width: auto;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    cursor: pointer;
}

/* Fullscreen lightbox overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease;
}

.lightbox-overlay img.zoomed {
    max-width: none;
    max-height: none;
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 15px;
}

/* ==========================================================================
   Countdown
   ========================================================================== */

.countdown { font-variant-numeric: tabular-nums; }
.expired { color: var(--accent-red); }

/* ==========================================================================
   Filter Bar (admin)
   ========================================================================== */

.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 16px;
}

.filter-bar .field { min-width: 160px; }

/* ==========================================================================
   User Card (admin)
   ========================================================================== */

.user-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 14px;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-card h3 { font-size: 16px; }
.user-card p { font-size: 13px; color: var(--text-secondary); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .card-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .tab-bar { max-width: 100%; }
    .card-view { margin-top: 40px; }
    .app-main { padding: 16px 12px 32px; }
    .top-nav { padding: 8px 12px; gap: 8px; }
    .filter-bar { flex-direction: column; }
}

/* ==========================================================================
   htmx indicator
   ========================================================================== */

.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline;
}

.htmx-request .htmx-hide-on-request {
    display: none;
}

/* ==========================================================================
   Notification Banner
   ========================================================================== */

/* Old subtle banner (kept for backwards compat) */
.notif-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: var(--accent-cyan-glow);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-primary);
    animation: toast-in 0.3s ease;
}

.notif-banner span { flex: 1; }

.notif-dismiss {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
.notif-dismiss:hover { color: var(--text-primary); }

/* Prominent notification banner — opt-out mode */
.notif-banner-urgent {
    width: 100%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.18), rgba(229, 57, 53, 0.08));
    border-bottom: 2px solid var(--accent-red);
    padding: 16px 24px;
    z-index: 99;
    animation: banner-slide-in 0.4s ease;
}

.notif-banner-content {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.notif-banner-content > span {
    flex: 1;
    min-width: 200px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.notif-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.notif-banner-actions .primary-button {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.notif-dismiss-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    white-space: nowrap;
}
.notif-dismiss-link:hover { color: var(--text-secondary); }

/* iOS step-by-step Home Screen guide */
.ios-steps {
    margin: 8px 0 0 0;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.ios-steps li {
    margin-bottom: 2px;
}

.ios-steps strong {
    color: var(--text-primary);
}

.ios-share-icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--accent-cyan);
    margin: 0 2px;
}

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

@media (max-width: 640px) {
    .notif-banner-urgent { padding: 12px 12px; }
    .notif-banner-content { flex-direction: column; align-items: flex-start; gap: 10px; }
    .notif-banner-actions { width: 100%; }
}

/* ==========================================================================
   Settings Page
   ========================================================================== */

.nav-settings {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}
.nav-settings:hover {
    color: var(--accent-cyan);
    background: rgba(41, 182, 246, 0.1);
    text-decoration: none;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    max-width: 800px;
}

.settings-grid .panel-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.settings-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-hint {
    font-size: 13px;
    color: var(--text-muted);
}

/* Toggle switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-primary);
}

.toggle-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-soft);
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.toggle-label input:checked + .toggle-switch {
    background: var(--accent-cyan-glow);
    border-color: var(--accent-cyan);
}

.toggle-label input:checked + .toggle-switch::after {
    transform: translateX(20px);
    background: var(--accent-cyan);
}

.toggle-label input:disabled + .toggle-switch {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .settings-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Loading Overlay (file uploads)
   ========================================================================== */

.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 25, 41, 0.85);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(41, 182, 246, 0.2);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

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