/* ==========================================================================
   MIO OIL - PROFESSIONAL UI/UX SYSTEM
   ========================================================================== */

:root { 
    --mio-primary: #0f172a; 
    --mio-primary-light: #1e293b;
    --mio-accent: #0284c7; 
    --mio-accent-hover: #0369a1;
    --mio-bg: #f8fafc; 
    --mio-border: #e2e8f0; 
    --mio-text: #334155;
    --mio-text-light: #64748b;
    --mio-red: #ef4444;
}

#mio-app { 
    font-family: "Plus Jakarta Sans", sans-serif; 
    background: transparent; 
    padding: 10px; 
    max-width: 1200px;
    margin: 0 auto;
}

.mio-container { 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); 
    overflow: hidden; 
    border: 1px solid var(--mio-border); 
}

/* --- BANNER (DASHBOARD) --- */
.mio-banner { 
    background: var(--mio-primary); 
    padding: 40px; 
    border-radius: 12px; 
    color: #fff; 
    border-bottom: 4px solid var(--mio-accent); 
    margin-bottom: 30px; 
    display: flex; 
    align-items: center; 
    gap: 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}
.mio-banner-icon {
    background: rgba(2, 132, 199, 0.2);
    padding: 16px;
    border-radius: 12px;
    color: var(--mio-accent);
}
.mio-banner-text h2 { 
    margin: 0; 
    font-family: 'Bebas Neue', cursive; 
    font-size: 3rem; 
    letter-spacing: 1px;
}
.mio-banner-text p { 
    margin: 4px 0 0 0; 
    opacity: 0.7; 
    font-size: 1rem;
    font-weight: 600;
}

/* --- NAV GRID --- */
.mio-nav-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
}
.mio-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff; 
    padding: 30px 20px; 
    border-radius: 12px; 
    text-align: center; 
    color: var(--mio-primary); 
    font-family: 'Bebas Neue', cursive; 
    border: 1px solid var(--mio-border); 
    font-size: 1.4rem; 
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.mio-nav-btn span.material-symbols-outlined { font-size: 32px; color: var(--mio-accent); transition: transform 0.3s ease; }
.mio-nav-btn:hover { border-color: var(--mio-accent); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(2, 132, 199, 0.1); }
.mio-nav-btn:hover span.material-symbols-outlined { transform: scale(1.1); }

.mio-nav-btn.blue:hover { border-color: var(--mio-accent); box-shadow: 0 12px 24px rgba(2, 132, 199, 0.1); }
.mio-nav-btn.blue span.material-symbols-outlined { color: var(--mio-accent); }

.mio-nav-btn.red:hover { border-color: var(--mio-red); box-shadow: 0 12px 24px rgba(239, 68, 68, 0.1); }
.mio-nav-btn.red span.material-symbols-outlined { color: var(--mio-red); }

/* --- KPI CARDS --- */
.mio-kpi-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px; 
    margin-bottom: 30px; 
}
.mio-kpi-card { 
    background: #fff; 
    padding: 24px; 
    border-radius: 12px; 
    text-align: center; 
    border: 1px solid var(--mio-border); 
    border-bottom: 4px solid var(--mio-primary); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); 
    position: relative;
}
.mio-kpi-card .kpi-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
}
.mio-kpi-card .kpi-icon span { font-size: 48px; }
.mio-kpi-card small { 
    font-family: "Bebas Neue", cursive; 
    color: var(--mio-text-light); 
    font-size: 1.2rem; 
    letter-spacing: 1px; 
    display: block;
    margin-bottom: 8px;
}
.mio-kpi-card .kpi-value { 
    font-family: "Bebas Neue", cursive; 
    font-size: 3.5rem; 
    line-height: 1; 
    color: var(--mio-primary); 
}

.mio-kpi-card.blue { border-bottom-color: var(--mio-accent); }
.mio-kpi-card.blue .kpi-value { color: var(--mio-accent); }
.mio-kpi-card.red { border-bottom-color: var(--mio-red); }
.mio-kpi-card.red .kpi-value { color: var(--mio-red); }

/* --- FORM & TABS --- */
.mio-form-header {
    background: var(--mio-primary);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border-bottom: 4px solid var(--mio-accent);
}
.mio-form-header-title { display: flex; align-items: center; gap: 12px; }
.mio-form-header h2 { margin: 0; font-family: 'Bebas Neue', cursive; font-size: 2.2rem; letter-spacing: 1px; }

.mio-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.mio-btn-back:hover { background: #fff; color: var(--mio-primary); }

.mio-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 10px;
}
.mio-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.mio-tabs { 
    display: flex; 
    background: var(--mio-bg); 
    border-bottom: 1px solid var(--mio-border); 
}
.tab-link { 
    flex: 1; 
    padding: 20px; 
    text-align: center; 
    cursor: pointer; 
    font-family: "Bebas Neue", cursive; 
    font-size: 1.4rem; 
    letter-spacing: 1px;
    border-bottom: 4px solid transparent; 
    color: var(--mio-text-light); 
    transition: 0.3s; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tab-link span { font-size: 20px; }
.tab-link.active { 
    background: #fff; 
    color: var(--mio-accent); 
    border-bottom-color: var(--mio-accent); 
}
.tab-content { display: none; padding: 30px; background: #fff; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }

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

.mio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.f-item label { 
    display: flex; 
    align-items: center;
    gap: 8px;
    font-weight: 700; 
    font-size: 12px; 
    margin-bottom: 8px; 
    color: var(--mio-text); 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}
.f-icon { font-size: 16px !important; color: var(--mio-accent); }
.f-item input, .f-item select, .f-item textarea { 
    width: 100%; 
    padding: 14px; 
    border: 1px solid var(--mio-border); 
    border-radius: 6px; 
    font-size: 14px; 
    background: var(--mio-bg); 
    transition: all 0.3s ease; 
    font-family: "Plus Jakarta Sans", sans-serif; 
    font-weight: 600;
    color: var(--mio-primary);
}
.f-item input:focus, .f-item select:focus, .f-item textarea:focus { 
    border-color: var(--mio-accent); 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    outline: none; 
}
.f-item-full { grid-column: 1 / -1; }

.mio-btn-next, .mio-btn-save { 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--mio-primary); 
    color: #fff; 
    padding: 16px 40px; 
    border-radius: 6px; 
    border: none; 
    font-family: "Bebas Neue", cursive; 
    font-size: 1.5rem; 
    letter-spacing: 1px;
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.mio-btn-next { background: var(--mio-primary-light); }
.mio-btn-next:hover { background: var(--mio-primary); transform: translateX(4px); }
.mio-btn-save { background: var(--mio-accent); box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2); }
.mio-btn-save:hover { background: var(--mio-accent-hover); transform: translateY(-2px); box-shadow: 0 15px 25px rgba(2, 132, 199, 0.3); }

/* --- ROW CARDS (LIST) --- */
.mio-search-box {
    position: relative;
    margin-bottom: 24px;
}
.mio-search-box .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mio-text-light);
}
#mSearch { 
    width: 100%; 
    padding: 18px 18px 18px 50px; 
    border-radius: 8px; 
    border: 1px solid var(--mio-border); 
    outline: none; 
    font-size: 1rem; 
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
#mSearch:focus {
    border-color: var(--mio-accent);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.mio-row-card { 
    background: #fff; 
    padding: 20px 24px; 
    margin-bottom: 16px; 
    border-radius: 8px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    border: 1px solid var(--mio-border); 
    border-left: 6px solid #cbd5e1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02); 
}
.mio-row-card:hover { 
    transform: translateX(6px); 
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08); 
    border-color: #cbd5e1;
}
.mio-row-content { display: flex; align-items: center; gap: 16px; }
.mio-row-icon { font-size: 32px; color: var(--mio-text-light); opacity: 0.5; }
.mio-row-card strong { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; color: var(--mio-primary); display: block; line-height: 1.2; letter-spacing: 1px; }
.mio-row-card small { color: var(--mio-text-light); font-weight: 600; font-size: 13px; }
.mio-row-action { font-family: 'Bebas Neue', cursive; color: var(--mio-accent); font-size: 1.4rem; letter-spacing: 1px; display: flex; align-items: center; opacity: 0.7; transition: 0.3s; }
.mio-row-card:hover .mio-row-action { opacity: 1; transform: translateX(5px); }

.mio-row-card.status-blue { border-left-color: var(--mio-accent); }
.mio-row-card.status-blue .mio-row-icon { color: var(--mio-accent); opacity: 1; }
.mio-row-card.status-red { border-left-color: var(--mio-red); }
.mio-row-card.status-red .mio-row-icon { color: var(--mio-red); opacity: 1; }

.mio-row-card.user-card { border-left-color: var(--mio-accent); cursor: default; }
.mio-row-card.user-card:hover { transform: none; box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02); border-color: var(--mio-border); }
.mio-row-card.user-card.admin { border-left-color: var(--mio-primary); }

.mio-btn-delete-small {
    background: #fef2f2;
    color: var(--mio-red);
    border: 1px solid #fecaca;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}
.mio-btn-delete-small:hover { background: var(--mio-red); color: #fff; border-color: var(--mio-red); }
.mio-badge { padding: 6px 12px; font-size: 0.85rem; font-weight: 700; border-radius: 4px; }
.mio-badge.outline { border: 1px solid var(--mio-border); color: var(--mio-text-light); background: var(--mio-bg); }

/* --- DETAIL VIEW --- */
.detail-grid { padding: 40px; background: #fff; }
.f-detail-item { background: var(--mio-bg); padding: 16px 20px; border-radius: 8px; border: 1px solid var(--mio-border); }
.f-detail-item label { font-size: 11px; color: var(--mio-text-light); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 6px; display: block; }
.f-detail-val { font-weight: 700; color: var(--mio-primary); font-size: 1.1rem; }

/* --- LOADER --- */
#mio-loader {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(255,255,255,0.95); z-index: 10000; flex-direction: column; 
    align-items: center; justify-content: center; color: var(--mio-primary);
}
.mio-spinner {
    width: 60px; height: 60px; border: 6px solid var(--mio-border); 
    border-top: 6px solid var(--mio-accent); border-radius: 50%; 
    animation: spin 1s linear infinite; margin-bottom: 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
#mio-loader p { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; letter-spacing: 1px; }

/* --- FLOATING ACTION BAR (MIO GESTOR PRO) --- */
#mio-bar-final {
    position: fixed !important; bottom: 30px !important; right: 30px !important; 
    display: flex !important; gap: 12px !important; z-index: 99999 !important;
    background: #ffffff !important; padding: 16px !important; border-radius: 50px !important;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15) !important; border: 2px solid var(--mio-border) !important;
}
.m-btn {
    padding: 12px 24px !important; border-radius: 30px !important; text-decoration: none !important;
    font-family: 'Bebas Neue', cursive !important; font-size: 1.2rem !important; letter-spacing: 1px !important;
    display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; 
    color: #fff !important; border: none !important; cursor: pointer !important; transition: all 0.3s ease !important;
}
.m-btn:hover { transform: translateY(-2px) !important; }
.b-xls { background: var(--mio-accent) !important; }
.b-xls:hover { box-shadow: 0 8px 15px rgba(2, 132, 199, 0.3) !important; }
.b-pdf { background: var(--mio-primary) !important; }
.b-pdf:hover { box-shadow: 0 8px 15px rgba(15, 23, 42, 0.3) !important; }
.b-edt { background: var(--mio-accent) !important; }
.b-edt:hover { box-shadow: 0 8px 15px rgba(2, 132, 199, 0.3) !important; }
.b-del { background: var(--mio-red) !important; padding: 12px !important; border-radius: 50% !important; aspect-ratio: 1; }
.b-del:hover { box-shadow: 0 8px 15px rgba(239, 68, 68, 0.3) !important; }
.b-del span.t-txt { display: none !important; }

@media (max-width: 768px) {
    #mio-app { padding: 0; }
    .mio-banner { flex-direction: column; text-align: center; padding: 30px 20px; border-radius: 0; }
    .mio-nav-grid { padding: 15px; }
    .mio-kpi-grid { padding: 15px; }
    .mio-search-box { padding: 0 15px; }
    .tab-link { font-size: 1.1rem; padding: 15px 10px; }
    .tab-link span { display: none; }
    .mio-row-card { flex-direction: column; align-items: flex-start; gap: 15px; }
    .mio-row-action { align-self: flex-end; }
    
    #mio-bar-final { 
        bottom: 0 !important; left: 0 !important; right: 0 !important; border-radius: 0 !important; 
        width: 100% !important; justify-content: space-between !important; padding: 12px 16px !important; 
        border: none !important; border-top: 1px solid var(--mio-border) !important;
    }
    .m-btn { padding: 10px !important; flex: 1 !important; flex-direction: column !important; font-size: 0.9rem !important; gap: 4px !important; border-radius: 8px !important; }
    .m-btn span.material-symbols-outlined { font-size: 20px !important; }
    .b-del { aspect-ratio: auto; border-radius: 8px !important; }
    .b-del span.t-txt { display: block !important; }
}
@media print { #mio-bar-final, .mio-form-header { display: none !important; } }

/* ==========================================================================
   PRO FEATURES - UPSELL UI SYSTEM
   ========================================================================== */

/* Nav button locked (dashboard) */
.mio-nav-btn.pro-locked {
    opacity: 0.7;
    background: #f8fafc;
    border-style: dashed;
    border-color: #94a3b8;
    cursor: pointer;
    position: relative;
    filter: saturate(0.4);
}
.mio-nav-btn.pro-locked:hover {
    border-color: #f59e0b;
    border-style: dashed;
    opacity: 1;
    filter: saturate(1);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.1);
}
.mio-nav-btn.pro-locked:hover span.material-symbols-outlined { color: #f59e0b; transform: none; }
.mio-nav-btn.pro-locked span.material-symbols-outlined { color: #94a3b8; }

/* PRO Badge pill */
.pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.35);
}
.pro-text {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* PRO Section container */
.mio-pro-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 36px;
    margin-top: 40px;
    border: 1px solid #334155;
    position: relative;
    overflow: hidden;
}
.mio-pro-section::before {
    content: 'PRO';
    position: absolute;
    top: -20px;
    right: 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 10rem;
    color: rgba(255,255,255,0.02);
    letter-spacing: -5px;
    pointer-events: none;
}

.mio-pro-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mio-pro-header span.material-symbols-outlined {
    font-size: 48px;
    color: #f59e0b;
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.5));
}
.mio-pro-header h3 {
    margin: 0 0 4px 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #fff;
}
.mio-pro-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
}

/* PRO feature cards grid */
.mio-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}
.mio-pro-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}
.mio-pro-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}
.mio-pro-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mio-pro-card-icon span { font-size: 24px; color: #f59e0b; }
.mio-pro-card-body { flex: 1; }
.mio-pro-card-body h4 {
    margin: 0 0 4px 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    color: #e2e8f0;
}
.mio-pro-card-body p {
    margin: 0;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 600;
}
.mio-pro-lock {
    color: #475569;
    font-size: 20px !important;
    flex-shrink: 0;
}
.mio-pro-card:hover .mio-pro-lock { color: #f59e0b; }

/* PRO CTA button */
.mio-pro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}
.mio-pro-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(245, 158, 11, 0.45);
    color: #000;
}

@media (max-width: 768px) {
    .mio-pro-section { padding: 24px 18px; border-radius: 0; margin-top: 20px; }
    .mio-pro-grid { grid-template-columns: 1fr; }
    .mio-pro-header h3 { font-size: 1.6rem; }
    .mio-pro-cta { padding: 14px 28px; font-size: 1.2rem; }
}

/* DEV Badge pill */
.dev-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.35);
}

/* INSPECTION SELECTION MODAL SYSTEM */
.mio-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: mioModalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mio-modal-card {
    background: #ffffff;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    padding: 36px 32px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid var(--mio-border);
    position: relative;
    animation: mioModalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mio-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--mio-text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}
.mio-modal-close:hover {
    color: var(--mio-primary);
}

.mio-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.mio-modal-icon {
    font-size: 48px !important;
    color: var(--mio-accent);
    background: rgba(2, 132, 199, 0.1);
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.mio-modal-header h3 {
    margin: 0 0 6px 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--mio-primary);
    letter-spacing: 1px;
}
.mio-modal-header p {
    margin: 0;
    color: var(--mio-text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.mio-modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mio-modal-opt {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--mio-border);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mio-modal-opt.available {
    background: #ffffff;
    cursor: pointer;
}
.mio-modal-opt.available:hover {
    border-color: var(--mio-accent);
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.1);
}
.mio-modal-opt.available .opt-icon {
    background: rgba(2, 132, 199, 0.15);
    color: var(--mio-accent);
}

.mio-modal-opt.disabled {
    background: #f8fafc;
    border-style: dashed;
    border-color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.75;
}
.mio-modal-opt.disabled:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}
.mio-modal-opt.disabled .opt-icon {
    background: #e2e8f0;
    color: #64748b;
}

.opt-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.opt-icon span {
    font-size: 28px !important;
}

.opt-content {
    flex: 1;
}
.opt-content h4 {
    margin: 0 0 4px 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: var(--mio-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.opt-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--mio-text-light);
    font-weight: 600;
    line-height: 1.4;
}

.badge-unavailable {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    background: #e2e8f0;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.opt-arrow {
    color: var(--mio-accent);
    font-size: 24px !important;
    transition: transform 0.3s ease;
}
.mio-modal-opt.available:hover .opt-arrow {
    transform: translateX(4px);
}

.opt-lock {
    color: #94a3b8;
    font-size: 20px !important;
}

