/* ============================================
   FinansApp — Ana Stil Dosyası
   Font: Plus Jakarta Sans + JetBrains Mono
   ============================================ */

/* ---- CSS DEĞIŞKENLERI ---- */
:root {
    --bg: #f0f2f7;
    --bg-card: #ffffff;
    --bg-sidebar: #0f1629;
    --bg-topbar: #ffffff;
    --bg-input: #f5f7fc;
    --bg-hover: #f0f4ff;
    --text: #1a2035;
    --text-muted: #7b8db0;
    --text-sidebar: #a8b8d8;
    --text-sidebar-active: #ffffff;
    --border: #e2e8f4;
    --border-input: #dde4f0;
    --accent: #4f6ef7;
    --accent-light: #e8edff;
    --accent-hover: #3a58e8;
    --green: #10b981;
    --green-light: #d1fae5;
    --red: #ef4444;
    --red-light: #fee2e2;
    --yellow: #f59e0b;
    --yellow-light: #fef3c7;
    --purple: #8b5cf6;
    --purple-light: #ede9fe;
    --sidebar-w: 240px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 16px rgba(79, 110, 247, 0.08);
    --shadow-card: 0 1px 4px rgba(0,0,0,0.06), 0 4px 20px rgba(79,110,247,0.07);
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: 0.18s ease;
}

[data-theme="dark"] {
    --bg: #0d1117;
    --bg-card: #161b27;
    --bg-sidebar: #0a0e1a;
    --bg-topbar: #161b27;
    --bg-input: #1e2535;
    --bg-hover: #1e2535;
    --text: #e2e8f0;
    --text-muted: #64748b;
    --text-sidebar: #7b8db0;
    --text-sidebar-active: #e2e8f0;
    --border: #1e2535;
    --border-input: #2d3748;
    --accent-light: #1e2d5a;
    --green-light: #052e16;
    --red-light: #450a0a;
    --yellow-light: #451a03;
    --purple-light: #2e1065;
    --shadow-card: 0 1px 4px rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.2);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    display: flex;
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
}

/* ---- SIDEBAR ---- */
.sidebar {
    width: var(--sidebar-w);
    background: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform var(--transition);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: white;
    flex-shrink: 0;
}

.logo-text {
    font-size: 16px; font-weight: 800;
    color: #fff; letter-spacing: 0.3px;
}

.sidebar-nav { flex: 1; padding: 16px 0; }

.nav-group {
    padding: 0 12px;
    margin-bottom: 8px;
}

.nav-group-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.25);
    padding: 8px 8px 4px;
    text-transform: uppercase;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-sidebar);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all var(--transition);
    margin-bottom: 2px;
    position: relative;
}

.nav-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(79,110,247,0.25), rgba(124,58,237,0.15));
    color: #fff;
    font-weight: 600;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; height: 60%;
    width: 3px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

.nav-icon { font-size: 16px; width: 18px; text-align: center; flex-shrink: 0; }

.nav-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sidebar-user {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: white;
    flex-shrink: 0;
}

.user-name {
    display: block;
    font-size: 13px; font-weight: 600; color: #e2e8f0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.user-role {
    display: block;
    font-size: 11px; color: rgba(255,255,255,0.35);
}

.sidebar-actions { display: flex; gap: 6px; }

.btn-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text-sidebar);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-icon:hover { background: rgba(255,255,255,0.13); color: #fff; }

/* ---- MAIN WRAPPER ---- */
.main-wrapper {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- TOPBAR ---- */
.topbar {
    background: var(--bg-topbar);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 0 var(--border);
}

.sidebar-toggle {
    display: none;
    background: none; border: none;
    font-size: 20px; cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
}

.topbar-title {
    font-size: 15px; font-weight: 700;
    color: var(--text);
}

.topbar-right {
    margin-left: auto;
    display: flex; align-items: center; gap: 16px;
}

.price-ticker {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.ticker-item { color: var(--text); font-weight: 500; }
.ticker-sep { color: var(--border); }

.topbar-date {
    font-size: 12px; color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ---- MAIN CONTENT ---- */
.main-content {
    flex: 1;
    padding: 24px;
    overflow-x: hidden;
}

/* ---- SAYFA BAŞLIĞI ---- */
.page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap; gap: 12px;
}

.page-header h1 {
    font-size: 22px; font-weight: 800;
    color: var(--text);
}

.page-header p {
    font-size: 13px; color: var(--text-muted);
    margin-top: 2px;
}

/* ---- KARTLAR ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-card);
    transition: background var(--transition), border-color var(--transition);
}

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

.card-title {
    font-size: 13px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* ---- İSTATİSTİK KARTLARI ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(79,110,247,0.12);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--stat-color, var(--accent));
    border-radius: var(--radius) var(--radius) 0 0;
}

.stat-card.green { --stat-color: var(--green); }
.stat-card.red { --stat-color: var(--red); }
.stat-card.yellow { --stat-color: var(--yellow); }
.stat-card.purple { --stat-color: var(--purple); }
.stat-card.blue { --stat-color: var(--accent); }

.stat-label {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.7px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 22px; font-weight: 800;
    color: var(--text);
    font-family: var(--font-mono);
    line-height: 1.2;
    word-break: break-all;
}

.stat-value.large { font-size: 26px; }

.stat-sub {
    font-size: 11px; color: var(--text-muted);
    margin-top: 4px;
}

.stat-icon {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 24px;
    opacity: 0.15;
}

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ---- TABLO ---- */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

thead th {
    background: var(--bg-input);
    padding: 11px 14px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr:hover td { background: var(--bg-hover); }

/* ---- BADGE ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.badge-green { background: var(--green-light); color: var(--green); }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow); }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-blue { background: var(--accent-light); color: var(--accent); }
.badge-gray { background: var(--bg-input); color: var(--text-muted); }

/* ---- FORM ELEMANLARI ---- */
.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 12px; font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid var(--border-input);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text);
    font-family: var(--font);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79,110,247,0.12);
    background: var(--bg-card);
}

.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }

select.form-control { cursor: pointer; }

textarea.form-control { resize: vertical; min-height: 80px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

/* ---- BUTONLAR ---- */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px; font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font);
}

.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-success {
    background: var(--green);
    color: white;
}
.btn-success:hover { opacity: 0.9; }

.btn-danger {
    background: var(--red);
    color: white;
}
.btn-danger:hover { opacity: 0.9; }

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--border-input);
    color: var(--text);
}
.btn-ghost:hover { background: var(--bg-hover); border-color: var(--accent); }

.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 12px 24px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- MODAL ---- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform var(--transition);
}

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

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

.modal-title { font-size: 17px; font-weight: 800; color: var(--text); }

.modal-close {
    background: none; border: none;
    font-size: 20px; cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    line-height: 1;
}
.modal-close:hover { color: var(--red); }

/* ---- FİLTRE BARI ---- */
.filter-bar {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.filter-bar .form-control { width: auto; min-width: 120px; }

/* ---- ALERTler ---- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid;
    font-size: 13.5px;
    margin-bottom: 16px;
    display: flex; align-items: flex-start; gap: 10px;
}

.alert-warning { background: var(--yellow-light); border-color: var(--yellow); color: #92400e; }
.alert-danger { background: var(--red-light); border-color: var(--red); color: #991b1b; }
.alert-success { background: var(--green-light); border-color: var(--green); color: #065f46; }
.alert-info { background: var(--accent-light); border-color: var(--accent); color: #1e40af; }

[data-theme="dark"] .alert-warning { color: var(--yellow); }
[data-theme="dark"] .alert-danger { color: #fca5a5; }
[data-theme="dark"] .alert-success { color: #6ee7b7; }
[data-theme="dark"] .alert-info { color: #93c5fd; }

/* ---- TOAST ---- */
.toast-container {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
    display: flex; flex-direction: column; gap: 8px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 13.5px;
    max-width: 340px;
    animation: slideInRight 0.3s ease;
    display: flex; align-items: center; gap: 10px;
}

.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.warning { border-left: 3px solid var(--yellow); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ---- GRAFİK KONTEYNER ---- */
.chart-container {
    position: relative;
    height: 260px;
}

/* ---- PARA DEĞERİ RENKLEME ---- */
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-muted); }
.text-mono { font-family: var(--font-mono); }
.fw-bold { font-weight: 700; }

/* ---- YÜKLEME GÖSTERGESI ---- */
.loading-spinner {
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

.skeleton {
    background: linear-gradient(90deg, var(--border) 25%, var(--bg-hover) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: 6px;
    height: 18px;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- PARA BİRİMİ BADGE ---- */
.currency-badge {
    display: inline-flex; align-items: center;
    padding: 2px 7px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 11px; font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ---- AI CHAT ---- */
.ai-chat {
    display: flex; flex-direction: column;
    gap: 16px;
    max-height: 60vh;
    overflow-y: auto;
    padding: 4px 0;
}

.ai-message {
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 90%;
}

.ai-message.user {
    background: var(--accent-light);
    color: var(--text);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.ai-message.assistant {
    background: var(--bg-input);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.ai-message h2, .ai-message h3 { font-size: 14px; margin-bottom: 6px; color: var(--text); }
.ai-message ul, .ai-message ol { padding-left: 18px; }
.ai-message li { margin-bottom: 2px; }
.ai-message strong { font-weight: 700; }
.ai-message code {
    background: var(--border);
    border-radius: 4px;
    padding: 1px 5px;
    font-family: var(--font-mono);
    font-size: 12px;
}
.ai-message hr { border: none; border-top: 1px solid var(--border); margin: 10px 0; }

/* ---- PROGRESS BAR ---- */
.progress {
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    background: var(--accent);
    transition: width 0.5s ease;
}

.progress-bar.green { background: var(--green); }
.progress-bar.red { background: var(--red); }
.progress-bar.yellow { background: var(--yellow); }

/* ---- FAİZ KART ---- */
.interest-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.interest-item {
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.interest-item .label {
    font-size: 11px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.interest-item .value {
    font-size: 15px; font-weight: 800;
    color: var(--green);
    font-family: var(--font-mono);
}

/* ---- MOBIL RESPONSIVE ---- */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-wrapper {
        margin-left: 0;
    }
    .sidebar-toggle { display: flex; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .main-content { padding: 16px; }
    .price-ticker { display: none; }
    .interest-summary { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-value { font-size: 18px; }
}

/* ---- INSTALL SAYFASI ---- */
.install-wrapper {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0f1629 0%, #1a2035 100%);
    padding: 24px;
}

.install-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.install-card h1 {
    font-size: 26px; font-weight: 800;
    color: #1a2035;
    margin-bottom: 4px;
}

.install-card p { color: #7b8db0; margin-bottom: 24px; }

.install-step {
    display: flex; align-items: center; gap: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.install-step.done { background: #d1fae5; color: #065f46; }
.install-step.error { background: #fee2e2; color: #991b1b; }

/* ---- LOGIN SAYFASI ---- */
.login-wrapper {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0f1629 0%, #1a1f35 50%, #0f1629 100%);
    padding: 24px;
}

.login-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.login-logo {
    text-align: center;
    margin-bottom: 28px;
}

.login-logo .logo-badge {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #4f6ef7, #7c3aed);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; color: white;
    margin: 0 auto 12px;
}

.login-logo h1 { color: #fff; font-size: 24px; font-weight: 800; }
.login-logo p { color: rgba(255,255,255,0.4); font-size: 13px; }

.login-card .form-label { color: rgba(255,255,255,0.5); }

.login-card .form-control {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}

.login-card .form-control:focus {
    background: rgba(255,255,255,0.09);
    border-color: #4f6ef7;
}

.login-card .form-control::placeholder { color: rgba(255,255,255,0.25); }

.login-error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fca5a5;
    font-size: 13px;
    margin-bottom: 16px;
}
