:root {
    --bg-dark: #07070c;
    --bg-card: rgba(20, 20, 32, 0.65);
    --bg-modal: rgba(13, 13, 23, 0.95);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-dim: #9ca3af;
    --primary: #0284c7;
    --primary-glow: rgba(2, 132, 199, 0.4);
    --secondary: #eab308;
    --secondary-glow: rgba(234, 179, 8, 0.3);
    --accent: #7c3aed;
    --danger: #ef4444;
    --success: #10b981;
    --border-err: rgba(239, 68, 68, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', 'Outfit', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 10% 20%, rgba(124, 58, 237, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(2, 132, 199, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
}

/* --- AUTH SCREEN --- */
#authScreen {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow);
    text-align: center;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.auth-card h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 30%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    padding-right: 4px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: right;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.25);
    background: rgba(0, 0, 0, 0.5);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5), 0 0 10px var(--primary-glow);
}

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

.auth-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 15px;
    display: none;
    animation: shake 0.3s ease;
}

/* --- DASHBOARD SCREEN --- */
#dashboardScreen {
    display: none;
    flex-direction: column;
    flex: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 25px 0;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.header-logo h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-badge i {
    color: var(--success);
}

.btn-logout {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--danger);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.25);
    transform: translateY(-1px);
}

/* --- ROUND SELECTOR --- */
.rounds-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.section-title i {
    color: var(--primary);
}

.rounds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    padding: 5px;
}

.round-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 12px 6px;
    border-radius: 12px;
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.round-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.round-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.round-btn .status-dot {
    font-size: 0.6rem;
    color: var(--success);
    opacity: 0.7;
}
.round-btn.not-played .status-dot {
    color: var(--text-dim);
    opacity: 0.3;
}

/* --- MATCH CARDS GRID --- */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(580px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
    animation: fadeIn 0.4s ease forwards;
}

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

.match-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 8px;
}

.match-teams-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.team-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.team-box.left-team {
    justify-content: flex-start;
}
.team-box.right-team {
    justify-content: flex-end;
    text-align: left;
}

.team-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
    border-radius: 4px;
}

.team-name {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.score-inputs-box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.score-input {
    width: 50px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: white;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.score-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    background: rgba(0,0,0,0.6);
}

.score-divider {
    color: var(--text-dim);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- SCHEDULING CONTROLS --- */
.sched-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0,0,0,0.15);
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    flex-wrap: wrap;
}

.sched-field {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sched-field label {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 600;
}

.sched-input {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: white;
    padding: 6px 10px;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.25s ease;
    width: 100%;
}

.sched-input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-clear-sched {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    align-self: flex-end;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-clear-sched:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.25);
}

/* --- CARD ACTION BUTTONS --- */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.btn-details {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #c084fc;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-details:hover {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-1px);
}

.stats-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stats-badge.completed {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* --- MODAL DIALOG --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: var(--bg-modal);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px rgba(124, 58, 237, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.show .modal-box {
    transform: scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-modal {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-close-modal:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* --- STATS SECTION IN MODAL --- */
.stats-section-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}

.stat-row-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.stat-label-ar {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
}

.stat-modal-input {
    width: 70px;
    height: 38px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}
.stat-modal-input:focus {
    outline: none;
    border-color: var(--primary);
}

.possession-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.poss-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-dim);
    padding: 0 4px;
}

.poss-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.poss-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    cursor: pointer;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    transition: transform 0.1s;
}
.poss-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* --- SCORERS SECTION --- */
.scorers-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.scorer-column-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scorer-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
}

.scorer-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 50px;
}

.scorer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
    font-size: 0.85rem;
}

.scorer-item span {
    font-weight: bold;
}

.btn-delete-scorer {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s;
}
.btn-delete-scorer:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

.add-scorer-form {
    display: flex;
    gap: 6px;
    margin-top: 5px;
}

.select-player {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    color: white;
    border-radius: 8px;
    padding: 6px;
    font-size: 0.8rem;
}
.select-player:focus {
    outline: none;
    border-color: var(--primary);
}

.input-minute {
    width: 50px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    color: white;
    border-radius: 8px;
    padding: 6px;
    font-size: 0.8rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}
.input-minute:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-add-scorer {
    background: var(--primary);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.btn-add-scorer:hover {
    background: var(--accent);
}

.modal-footer {
    padding: 15px 24px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-modal-action {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-modal-action.save {
    background: var(--primary);
    color: white;
}
.btn-modal-action.save:hover {
    background: var(--accent);
}
.btn-modal-action.cancel {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-glass);
}
.btn-modal-action.cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- FIXED ACTION BAR AT BOTTOM --- */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(13, 13, 23, 0.8);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-glass);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.bar-inner {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bar-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

.bar-status i {
    font-size: 1.1rem;
}

.status-idle { color: var(--text-dim); }
.status-saving { color: var(--secondary); }
.status-success { color: var(--success); }
.status-error { color: var(--danger); }

.bar-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-save-db {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-save-db:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-back-hub {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back-hub:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- ANIMATIONS --- */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* --- SEASON CREATOR SPECIFICS --- */
.season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 900px) {
    .season-grid {
        grid-template-columns: 1fr;
    }
}
.season-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}
.checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
}
.checkbox-item:hover {
    background: rgba(255,255,255,0.05);
}
.checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.checkbox-item span {
    font-size: 0.9rem;
    font-weight: 600;
}
.planning-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}
.planning-match-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.planning-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.planning-team-select {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glass);
    color: white;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 700;
}
.planning-team-select:focus {
    outline: none;
    border-color: var(--primary);
}
.validation-warning {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
