/* ============================================================
   趣兽聚 - 主样式表
   浅蓝色系 · 玻璃拟态 · Furry风格
   ============================================================ */

:root {
    --color-primary: #5BB5D5;
    --color-primary-light: #7EC8E3;
    --color-primary-dark: #3A9BC0;
    --color-accent: #FFB6C1;
    --color-accent-warm: #FFD4A8;
    --color-bg: #E8F4FA;
    --color-bg-gradient: linear-gradient(135deg, #E8F4FA 0%, #D4ECF7 50%, #C5E3F0 100%);
    --color-surface: rgba(255, 255, 255, 0.72);
    --color-surface-solid: #FFFFFF;
    --color-text: #2C4A5E;
    --color-text-light: #6B8FA3;
    --color-text-muted: #9BB5C5;
    --color-border: rgba(91, 181, 213, 0.2);
    --color-shadow: rgba(91, 181, 213, 0.15);
    --color-success: #5CB85C;
    --color-warning: #F0AD4E;
    --color-danger: #E87C7C;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px var(--color-shadow);
    --shadow-md: 0 4px 20px var(--color-shadow);
    --shadow-lg: 0 8px 32px rgba(91, 181, 213, 0.2);
    --glass-blur: blur(16px);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    --nav-height: 64px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg-gradient);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Glass Effect ---- */
.glass {
    background: var(--color-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
}

/* ---- Icons ---- */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 36px; height: 36px; }

/* ---- Navbar ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-height);
    box-shadow: var(--shadow-sm);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-height);
}
.navbar-brand {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.25rem; font-weight: 700; color: var(--color-primary-dark);
}
.navbar-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 16px; border-radius: var(--radius-sm);
    color: var(--color-text); font-size: 0.9rem; transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { background: rgba(91,181,213,0.12); color: var(--color-primary-dark); }
.nav-user { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--color-text); padding: 8px; }

.main-content { padding-top: calc(var(--nav-height) + 24px); padding-bottom: 48px; min-height: calc(100vh - 200px); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 24px; border-radius: var(--radius-md); font-size: 0.9rem;
    font-weight: 500; border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none; white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff; box-shadow: 0 4px 12px rgba(91,181,213,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(91,181,213,0.45); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--color-primary); color: var(--color-primary-dark); }
.btn-outline:hover { background: rgba(91,181,213,0.1); }
.btn-ghost { background: rgba(91,181,213,0.08); color: var(--color-primary-dark); }
.btn-ghost:hover { background: rgba(91,181,213,0.15); }
.btn-secondary { background: #E8F4FA; color: var(--color-primary-dark); border: 1px solid var(--color-border); }
.btn-secondary:hover { background: #D4ECF7; }
.btn-danger { background: var(--color-danger); color: #fff; }
.btn-sm { padding: 6px 16px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
a.btn.is-disabled, a.btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

/* ---- Join page ---- */
.join-page { max-width: 480px; margin-top: 24px; padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
.join-page-card { padding: 28px; }
.join-page-card:hover { transform: none; }
.join-page-header { margin-bottom: 24px; }
.join-page-back { font-size: 0.88rem; color: var(--color-text-muted); text-decoration: none; }
.join-page-back:hover { color: var(--color-primary-dark); }
.join-page-header h2 { margin: 12px 0 4px; font-size: 1.35rem; }
.join-page-subtitle { color: var(--color-text-light); font-size: 0.92rem; margin: 0; }
.join-page-note { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 16px; }
.join-qq-preview {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 12px;
    background: rgba(91,181,213,0.08); border-radius: 10px;
}
.join-qq-preview img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.join-page .recaptcha-wrap { overflow: visible; }

.join-participants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.join-participant-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: rgba(91,181,213,0.08);
    border-radius: 999px;
    font-size: 0.88rem;
}
.join-participant-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.join-participant-name { font-weight: 500; }
.join-participant-rank {
    font-size: 0.75rem;
    color: var(--color-primary-dark);
    margin-left: 2px;
}

/* ---- Cards ---- */
.card {
    background: var(--color-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 20px; }
.card-cover { width: 100%; height: 180px; object-fit: cover; background: linear-gradient(135deg, #D4ECF7, #B8DFF0); }
.card-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--color-text); }
.card-meta { font-size: 0.82rem; color: var(--color-text-light); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.card-tag {
    display: inline-block; padding: 2px 10px; border-radius: 20px;
    font-size: 0.75rem; background: rgba(91,181,213,0.12); color: var(--color-primary-dark);
}

/* ---- Activity Grid ---- */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.section { margin-bottom: 40px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-title { font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--color-text); }

/* ---- Hero ---- */
.hero {
    text-align: center; padding: 48px 20px 32px;
    background: linear-gradient(180deg, rgba(126,200,227,0.15) 0%, transparent 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--color-text-light); font-size: 1.05rem; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Search & Filter ---- */
.search-bar {
    display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
}
.search-input {
    flex: 1; min-width: 200px; padding: 12px 16px 12px 44px;
    border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
    background: var(--color-surface-solid); font-size: 0.9rem; color: var(--color-text);
    transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(91,181,213,0.15); }
.search-wrapper { position: relative; flex: 1; min-width: 200px; }
.search-wrapper .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-tab {
    padding: 6px 16px; border-radius: 20px; font-size: 0.85rem;
    border: 1.5px solid var(--color-border); background: var(--color-surface);
    cursor: pointer; transition: all var(--transition); color: var(--color-text-light);
}
.filter-tab:hover, .filter-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; color: var(--color-text); }
.form-label .required { color: var(--color-danger); }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md); background: var(--color-surface-solid);
    font-size: 0.9rem; color: var(--color-text); transition: border-color var(--transition);
    font-family: inherit;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(91,181,213,0.15);
}
.form-hint { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
.form-section-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.form-radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.form-radio { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.form-checkbox { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.form-checkbox input { margin-top: 4px; }

/* ---- Auth Pages ---- */
.auth-container { max-width: 420px; margin: 40px auto; padding: 0 20px; }
.auth-card { padding: 40px 32px; }
.auth-card h2 { text-align: center; margin-bottom: 8px; font-size: 1.5rem; }
.auth-card .subtitle { text-align: center; color: var(--color-text-light); margin-bottom: 28px; font-size: 0.9rem; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--color-text-light); }

/* ---- Avatar ---- */
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-border); }
.avatar-sm { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.avatar-lg { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-primary-light); }

/* ---- Activity Detail ---- */
.detail-hero { position: relative; height: 320px; overflow: hidden; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 20px; background: linear-gradient(transparent, rgba(44,74,94,0.7));
    color: #fff;
}
.detail-hero-overlay h1 { font-size: 1.6rem; margin-bottom: 8px; }
.detail-content { max-width: 800px; margin: -40px auto 0; padding: 0 20px; position: relative; z-index: 1; }
.detail-card { padding: 28px; margin-bottom: 20px; }
.detail-section { margin-bottom: 24px; }
.detail-section h3 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--color-primary-dark); }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.status-badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 500;
}
.status-published { background: rgba(92,184,92,0.15); color: var(--color-success); }
.status-upcoming { background: rgba(91,181,213,0.15); color: var(--color-primary-dark); }
.status-ongoing { background: rgba(92,184,92,0.15); color: var(--color-success); }
.map-preview { height: 200px; border-radius: 12px; overflow: hidden; margin-top: 12px; background: linear-gradient(135deg, #D4ECF7, #B8DFF0); }
.map-preview:empty { display: none; }
.carpool-card { padding: 14px; background: rgba(91,181,213,0.06); border-radius: 12px; margin-bottom: 10px; font-size: 0.88rem; }
.carpool-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.carpool-delete-btn { color: var(--color-danger); padding: 4px 10px; min-height: 32px; font-size: 0.82rem; }
.recaptcha-wrap { overflow: hidden; }
.recaptcha-wrap > div { transform-origin: left top; }
.carpool-card-steps { display: grid; gap: 8px; margin-top: 8px; }
.carpool-step { display: flex; gap: 10px; align-items: flex-start; }
.carpool-step-num { width: 22px; height: 22px; border-radius: 50%; background: var(--color-primary); color: #fff; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.carpool-form-steps .step-panel { display: none; }
.carpool-form-steps .step-panel.active { display: block; }
.carpool-step-dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 16px; }
.carpool-step-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); }
.carpool-step-dots span.active { background: var(--color-primary); }
.status-pending { background: rgba(240,173,78,0.15); color: var(--color-warning); }
.status-ended { background: rgba(155,181,197,0.15); color: var(--color-text-muted); }
.status-cancelled { background: rgba(232,124,124,0.15); color: var(--color-danger); }

/* ---- Map ---- */
.map-container { width: 100%; height: 300px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); }

.map-picker-wrap { position: relative; margin-bottom: 4px; }
.map-search-bar {
    display: flex; gap: 8px; align-items: stretch; margin-bottom: 8px;
}
.map-search-bar .map-search-input { flex: 1; min-width: 0; margin-bottom: 0; }
.map-search-btn { flex-shrink: 0; padding-left: 18px; padding-right: 18px; white-space: nowrap; }
.map-suggest-list {
    position: absolute; left: 0; right: 0; top: 48px; z-index: 20;
    background: var(--color-surface-solid); border: 1px solid var(--color-border);
    border-radius: var(--radius-md); box-shadow: var(--shadow-md); max-height: 220px; overflow-y: auto;
}
.map-suggest-item {
    display: block; width: 100%; text-align: left; padding: 10px 14px; border: none; background: none;
    cursor: pointer; font-size: 0.88rem; color: var(--color-text); border-bottom: 1px solid var(--color-border);
}
.map-suggest-item:last-child { border-bottom: none; }
.map-suggest-item:hover { background: rgba(91, 181, 213, 0.1); }
.map-suggest-item span { display: block; font-size: 0.75rem; color: var(--color-text-muted); margin-top: 2px; }
.map-picker-loading, .map-picker-error {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; min-height: 200px; padding: 20px; text-align: center;
    background: #E8F4FA; color: #6B8FA3; font-size: 0.9rem;
}
.map-picker-error-hint { font-size: 0.8rem; color: #9BB5C4; margin-top: 8px; line-height: 1.5; }

.join-status-banner {
    margin-bottom: 20px; padding: 16px 18px; border-radius: var(--radius-md);
    font-size: 0.92rem; line-height: 1.6;
}
.join-status-banner strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.join-status-banner p { margin: 6px 0 0; font-size: 0.85rem; opacity: 0.92; }
.join-status-pending { background: rgba(240, 173, 78, 0.15); border: 1px solid rgba(240, 173, 78, 0.35); color: #8a5a00; }
.join-status-success { background: rgba(92, 184, 92, 0.15); border: 1px solid rgba(92, 184, 92, 0.35); color: #2d6a2d; }
.join-status-danger { background: rgba(232, 124, 124, 0.15); border: 1px solid rgba(232, 124, 124, 0.35); color: #a33; }
.join-status-info { background: rgba(91, 181, 213, 0.12); border: 1px solid rgba(91, 181, 213, 0.3); color: var(--color-primary-dark); }

/* ---- Comments ---- */
.comment-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item { display: flex; gap: 12px; }
.comment-body { flex: 1; }
.comment-author { font-weight: 600; font-size: 0.88rem; }
.comment-time { font-size: 0.75rem; color: var(--color-text-muted); }
.comment-text { font-size: 0.9rem; margin-top: 4px; }

/* ---- Tabs ---- */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; background: rgba(91,181,213,0.08); border-radius: var(--radius-md); padding: 4px; }
.tab {
    flex: 1; padding: 10px; text-align: center; border-radius: var(--radius-sm);
    cursor: pointer; font-size: 0.88rem; transition: all var(--transition); border: none; background: none; color: var(--color-text-light);
}
.tab.active { background: var(--color-surface-solid); color: var(--color-primary-dark); font-weight: 600; box-shadow: var(--shadow-sm); }

/* ---- Modal ---- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(44,74,94,0.4);
    display: flex; align-items: center; justify-content: center; z-index: 2000;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal {
    background: var(--color-surface-solid); border-radius: var(--radius-lg);
    padding: 28px; max-width: 480px; width: 90%; max-height: 85vh; overflow-y: auto;
    box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform var(--transition);
}
.modal-overlay.show .modal { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-title { font-size: 1.15rem; font-weight: 600; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--color-text-muted); padding: 4px; }

/* ---- Toast ---- */
.toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--color-text); color: #fff; padding: 12px 24px;
    border-radius: var(--radius-md); font-size: 0.88rem; z-index: 3000;
    transition: transform var(--transition); pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- Footer ---- */
.footer { padding: 32px 0; text-align: center; border-top: 1px solid var(--color-border); margin-top: 48px; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; color: var(--color-primary-dark); margin-bottom: 8px; }
.footer-text { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 4px; }
.footer-copy { font-size: 0.78rem; color: var(--color-text-muted); }

/* ---- Empty State ---- */
.empty-state { text-align: center; padding: 48px 20px; color: var(--color-text-muted); }
.empty-state .icon-xl { margin: 0 auto 16px; opacity: 0.4; }

/* ---- Ticket ---- */
.ticket-card {
    max-width: 400px; margin: 40px auto; padding: 32px;
    background: linear-gradient(135deg, #fff, #E8F4FA);
    border: 2px dashed var(--color-primary-light); border-radius: var(--radius-xl);
    text-align: center;
}
.ticket-qr { width: 200px; height: 200px; margin: 20px auto; }

/* ---- Loading ---- */
.loading { display: flex; align-items: center; justify-content: center; padding: 40px; }
.spinner {
    width: 32px; height: 32px; border: 3px solid var(--color-border);
    border-top-color: var(--color-primary); border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Paw decoration ---- */
.paw-decoration {
    position: fixed; opacity: 0.04; pointer-events: none; z-index: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .navbar-menu {
        position: fixed; top: var(--nav-height); left: 0; right: 0;
        background: var(--color-surface-solid); flex-direction: column;
        padding: 16px; box-shadow: var(--shadow-md);
        transform: translateY(-120%); transition: transform var(--transition);
    }
    .navbar-menu.open { transform: translateY(0); }
    .hero h1 { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .detail-hero { height: 220px; }
    .activity-grid { grid-template-columns: 1fr; }
    .detail-actions { flex-direction: column; }
    .detail-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .auth-card { padding: 28px 20px; }
    .fcfs-row { grid-template-columns: 1fr !important; }
}

/* ---- 先到先得物料 ---- */
.fcfs-gift-list { display: flex; flex-direction: column; gap: 10px; }
.fcfs-gift-card {
    padding: 14px 16px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255,182,193,0.12), rgba(126,200,227,0.12));
    border: 1px solid var(--color-border);
}
.fcfs-gift-card.fcfs-full { opacity: 0.65; }
.fcfs-gift-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.fcfs-gift-rank {
    font-size: 0.82rem; font-weight: 600; color: var(--color-primary-dark);
    background: rgba(91,181,213,0.15); padding: 2px 10px; border-radius: 20px;
}
.fcfs-gift-status { font-size: 0.78rem; color: var(--color-text-light); }
.fcfs-gift-name { font-weight: 600; font-size: 1rem; }
.fcfs-gift-desc { font-size: 0.85rem; color: var(--color-text-light); margin-top: 4px; }
.fcfs-my-reward {
    margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-md);
    background: rgba(92,184,92,0.12); border: 1px dashed var(--color-success);
    font-size: 0.9rem; display: flex; flex-direction: column; gap: 4px;
}
