/* 
   SISTEMA DE DISEÑO METRO PREMIUM (GLASSMORPISM V4) 
   Base para Header, Footer, Listados y TILES de Mi.Plan
*/

:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --income-color: #34c759;
    --expense-color: #ff3b30;
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.3);
    --metro-primary: #007aff;
    --bg-dark: #0f172a;
}

* { box-sizing: border-box; }

body { 
    margin: 0; padding: 0; 
    background: var(--bg-dark); 
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.bg-metro {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    min-height: 100vh;
}

.app-main-content {
    padding: 85px 20px 105px;
    max-width: 600px;
    margin: 0 auto;
}

/* Dashboard u otras pantallas sin barra inferior fija */
.app-page--no-footer .app-main-content {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}

/* =========================================
   HEADER & FOOTER (UIComponents.js)
   ========================================= */
.app-header {
    position: fixed; top: 0; left: 0; right: 0; height: 65px; z-index: 2000;
    background: rgba(15, 23, 42, 0.75); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border); display: flex; align-items: center;
}
.header-content {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; max-width: 600px; margin: 0 auto; padding: 0 20px;
}
.logo-container { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.5px; }
.logo-dot { display: inline-block; width: 4.5px; height: 4.5px; border-radius: 50%; background: var(--metro-primary); margin-left: 1px; }

/* Avatar y Logout UI */
.header-actions { display: flex; align-items: center; gap: 15px; }
.header-avatar-mini { 
    width: 22px; height: 22px; 
    border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}
.header-logout-btn { color: white; opacity: 0.6; font-size: 22px; cursor: pointer; transition: opacity 0.2s; }
.header-logout-btn:hover { opacity: 1; }

.app-footer {
    position: fixed; bottom: 0; left: 0; right: 0; height: 75px; z-index: 2000;
    background: rgba(15, 23, 42, 0.75); backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border); display: flex; align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}
.footer-content {
    display: flex; justify-content: space-around; align-items: center;
    width: 100%; max-width: 600px; margin: 0 auto;
}
.nav-item {
    display: flex; flex-direction: column; align-items: center; color: var(--text-muted);
    text-decoration: none; font-size: 0.62rem; font-weight: 500; gap: 3px; flex: 1; min-width: 0;
}
.nav-item span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-item i { font-size: 1.25rem; }
.nav-item.active { color: var(--metro-primary); }

/* =========================================
   LISTADOS GLASSMORPISM (V4)
   ========================================= */
.list-container { display: flex; flex-direction: column; gap: 6px; }
.list-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
    transition: background 0.12s ease, transform 0.1s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.list-item:active { transform: scale(0.97); background: rgba(255, 255, 255, 0.1); filter: brightness(1.1); }

.item-icon {
    width: 44px; height: 44px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem; flex-shrink: 0;
}
.item-content { flex: 1; overflow: hidden; }
.item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.item-amount { font-weight: 800; font-size: 1.15rem; text-align: right; }
.item-amount.income { color: var(--income-color); }
.item-amount.expense { color: var(--expense-color); }
.item-details { font-size: 0.82rem; font-weight: 600; color: white; display: flex; align-items: center; gap: 6px; }
.item-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* =========================================
   CARDS Y CONTENEDORES (Summary & Form)
   ========================================= */
.summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    backdrop-filter: blur(20px);
    margin-bottom: 25px;
}
.summary-monto { font-size: 2.2rem; letter-spacing: -1px; margin-bottom: 5px; }
.fs-big { font-size: 2.2rem !important; }
.fw-800 { font-weight: 800 !important; }
.fs-10 { font-size: 0.65rem !important; }
.fw-600 { font-weight: 600 !important; }
.mb-25 { margin-bottom: 25px !important; }
.p-25 { padding: 25px !important; }
.opacity-50 { opacity: 0.5 !important; }
.uppercase { text-transform: uppercase !important; }

/* =========================================
   SISTEMA DE LISTAS V4 (Glass List)
   ========================================= */
.list-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Soporte para Grid de 2 Columnas */
.list-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
}

.list-grid-2 .list-item {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
    gap: 8px;
    height: 100%;
}

.list-grid-2 .item-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.list-grid-2 .item-desc {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}

.list-grid-2 .item-arrow-mini {
    display: none; /* Quitamos flecha en grid para ganar espacio */
}

.list-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
    transition: background 0.12s ease, transform 0.1s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.list-item:active { transform: scale(0.97); background: rgba(255, 255, 255, 0.1); filter: brightness(1.1); }

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.item-content { flex: 1; overflow: hidden; }

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.item-details {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-amount {
    font-weight: 800;
    font-size: 1.1rem;
    text-align: right;
    white-space: nowrap;
}
.item-amount.income { color: var(--income-color); }
.item-amount.expense { color: var(--expense-color); }

.item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.item-arrow-mini {
    opacity: 0.3;
    font-size: 0.8rem;
}

.empty-state-v4 {
    padding: 60px 20px;
    text-align: center;
    opacity: 0.3;
}
.empty-state-v4 i { font-size: 3.5rem; margin-bottom: 20px; }
.empty-state-v4 p { font-size: 0.9rem; font-weight: 600; }

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.metro-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 14px 18px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s;
}
.metro-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--metro-primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    margin-left: 4px;
}

.btn-primary {
    background: var(--metro-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary:active { transform: scale(0.98); opacity: 0.9; }

.btn-danger {
    background: rgba(255, 59, 48, 0.15);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 4px;
    cursor: pointer;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    cursor: pointer;
}

/* =========================================
   GRID DE TILES (SmartButtons)
   ========================================= */
.tile-container { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 12px; }
.tile {
    position: relative; border-radius: 4px; aspect-ratio: 1/1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 15px; cursor: pointer; transition: transform 0.2s;
    background: var(--glass-bg); border: 1px solid var(--glass-border); overflow: hidden;
}
.tile-icon { font-size: 2.2rem; margin-bottom: 8px; color: white; }
.tile-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: white; }

/* FAB (Floating Action Button) */
.btn-fab {
    position: fixed; bottom: 100px; right: 25px; 
    width: 60px; height: 60px; border-radius: 4px;
    background: var(--metro-primary); color: white;
    border: none; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; cursor: pointer; z-index: 2100;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
    transition: transform 0.2s, background 0.2s;
}
.btn-fab:active { transform: scale(0.9); background: #0056b3; }

/* FILTROS */
.alphabet-scroll-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px; /* Margen inferior para que no toque las filas */
    padding: 2px 0;
}
.filter-section-label { 
    display: block; 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    opacity: 0.5; 
    font-weight: 800; 
    margin-bottom: 8px; 
    margin-top: 15px;
}
.filter-wrap-container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-bottom: 20px; 
    padding: 2px 0;
}
.letter-badge {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: white; font-size: 0.65rem !important; padding: 4px 10px !important;
    border-radius: 4px; cursor: pointer; text-transform: uppercase;
}
.letter-badge.active { background: var(--metro-primary) !important; font-weight: 700 !important; }

/* Filtros de listas (gastos/ingresos): barra compacta + panel desplegable */
.unified-filter-shell {
    position: relative;
    margin-bottom: 12px;
}
/* Menos aire entre el título (module-intro) y la barra de filtros — evita doble “respiro” */
#module-intro-root + .unified-filter-shell {
    margin-top: -14px;
}
.unified-filter-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 40px;
}
.unified-filter-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: var(--glass-bg);
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.unified-filter-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}
.unified-filter-toggle-btn.is-open {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--metro-primary);
}
.unified-filter-toggle-btn .fa-filter { font-size: 1rem; }
.unified-filter-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 8px;
    min-height: 8px;
    padding: 0;
    border-radius: 999px;
    background: #ff3b30;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
    font-size: 0;
    line-height: 0;
    pointer-events: none;
}
.unified-filter-badge.has-count {
    min-width: 16px;
    min-height: 16px;
    padding: 0 4px;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 16px;
    color: #fff;
    text-align: center;
}
.unified-filter-panel {
    margin-top: 2px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    animation: unifiedFilterPanelIn 0.2s ease;
}
@keyframes unifiedFilterPanelIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Lista de tarjetas: acciones como badges / pills */
.credit-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.credit-card-action-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.credit-card-action-badge i { font-size: 0.66rem; line-height: 1; opacity: 0.92; }
.credit-card-action-badge:active { transform: scale(0.96); }

@media (max-width: 420px) {
    .credit-card-actions {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 4px;
        padding-bottom: 2px;
    }
    .credit-card-actions::-webkit-scrollbar { display: none; }
    .credit-card-action-badge {
        flex: 0 0 auto;
        font-size: 0.48rem;
        letter-spacing: 0.22px;
        padding: 5px 7px;
    }
    .credit-card-action-badge i { font-size: 0.58rem; }
}

.credit-card-action-badge--pago {
    background: rgba(52, 199, 89, 0.2);
    border-color: rgba(52, 199, 89, 0.45);
    color: #7aefb0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.credit-card-action-badge--pago:hover {
    background: rgba(52, 199, 89, 0.32);
    border-color: rgba(52, 199, 89, 0.65);
    color: #a8f5cc;
}

.credit-card-action-badge--reintegro {
    background: rgba(0, 122, 255, 0.18);
    border-color: rgba(0, 122, 255, 0.42);
    color: #8fc4ff;
}
.credit-card-action-badge--reintegro:hover {
    background: rgba(0, 122, 255, 0.3);
    border-color: rgba(0, 122, 255, 0.6);
    color: #c5e0ff;
}

.credit-card-action-badge--editar {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
}
.credit-card-action-badge--editar:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.92);
}

/* MISC */
.module-intro { margin-bottom: 30px; }
.section-title { font-size: 1.9rem; font-weight: 900; letter-spacing: -1.2px; margin: 0; }
.section-subtitle { opacity: 0.5; font-size: 0.92rem; }

/* Aviso temporal (p. ej. rebuild / beta) — dashboard inicio */
.app-rebuild-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 22px;
    padding: 11px 14px;
    border-radius: 6px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.35);
    font-size: 0.7rem;
    line-height: 1.45;
    font-weight: 600;
    color: rgba(255, 251, 235, 0.92);
    letter-spacing: 0.02em;
}
.app-rebuild-notice i {
    flex-shrink: 0;
    margin-top: 1px;
    color: #fbbf24;
    font-size: 0.85rem;
}
.app-rebuild-notice span { opacity: 0.95; }
.loading-state { text-align: center; padding: 60px; opacity: 0.5; }

/* =========================================
   FORMS & INPUTS (Glassmorphism)
   ========================================= */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.form-group { margin-bottom: 20px; }
.form-group.mb-25 { margin-bottom: 25px; }
.form-group.mb-30 { margin-bottom: 30px; }

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.metro-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 14px 18px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}
.metro-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--metro-primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

.btn-primary {
    background: var(--metro-primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 16px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary:active { transform: scale(0.98); opacity: 0.9; }

.btn-danger {
    background: rgba(255, 59, 48, 0.15);
    color: var(--expense-color);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 4px;
    padding: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-danger:active { background: rgba(255, 59, 48, 0.25); }

.w-100 { width: 100%; }
.mb-15 { margin-bottom: 15px; }
.pt-20 { padding-top: 20px; }
.px-20 { padding-left: 20px; padding-right: 20px; }

/* =========================================
   WIZARD COMPONENTS (Forms)
   ========================================= */
.wizard-step { 
    display: none; 
    padding: 0; /* Padding controlado por app-main-content */
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    width: 100%; 
}
.wizard-step.active { display: block; }

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.premium-selection-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 3px;
    transition: background 0.12s ease, transform 0.1s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.premium-selection-card:active { transform: scale(0.97); background: rgba(255, 255, 255, 0.1); filter: brightness(1.1); }
.premium-selection-card.selected { 
    background: rgba(0, 122, 255, 0.18);
    box-shadow: inset 3px 0 0 var(--metro-primary);
}

.monto-large { 
    font-size: 3.5rem; 
    font-weight: 900; 
    text-align: center; 
    margin: 30px 0; 
    color: white; 
    letter-spacing: -2px; 
}

.populares-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    grid-gap: 12px; 
    margin-top: 15px; 
}

.btn-pop { 
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border); 
    border-radius: 4px; 
    padding: 18px; 
    color: white; 
    font-weight: 700; 
    text-align: center; 
    font-size: 1rem;
    transition: all 0.2s;
}
.btn-pop:active { background: var(--metro-primary); transform: scale(0.96); }

.btn-wizard-next { 
    background: var(--metro-primary); 
    color: white; 
    border: none; 
    border-radius: 4px; 
    padding: 18px; 
    width: 100%; 
    font-weight: 800; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

.btn-wizard-back {
    background: transparent; 
    color: var(--text-muted); 
    border: 1px solid var(--glass-border);
    border-radius: 4px; 
    padding: 18px; 
    width: 100%; 
    font-weight: 600;
    margin-top: 10px;
}

/* =========================================
   PROFILE & OPTIONS UI (V4)
   ========================================= */
.profile-header-container {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border-radius: 4px;
    margin-bottom: 20px;
}

.avatar-manager {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--metro-primary), #60a917);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.avatar-edit-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--metro-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-dark);
    font-size: 0.8rem;
    color: white;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.option-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.option-btn i, .option-btn span.text-bold {
    font-size: 1.2rem;
    transition: color 0.2s;
}

.option-btn span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-btn.active {
    background: rgba(0, 122, 255, 0.15);
    border-color: var(--metro-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.2);
}

.option-btn.active i, .option-btn.active span.text-bold {
    color: var(--metro-primary);
}

.info-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.btn-outline-danger {
    background: transparent;
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 4px;
    padding: 16px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline-danger:active {
    background: rgba(255, 59, 48, 0.1);
    transform: scale(0.98);
}
