/* ==========================================================================
   1. GLOBALNE STYLE I RESET
   ========================================================================== */
html {
    box-sizing: border-box; 
}
*, *:before, *:after {
    box-sizing: inherit;
}

:root {
    --bg-body: #f8f9fa;
    --bg-container: #ffffff;
    --text-main: #333333;
    --text-muted: #555555;
    --text-light: #7f8c8d;
    
    --nav-bg: #2c3e50;
    --nav-text: #bdc3c7;
    --nav-text-hover: #ffffff;

    --border-color: #dfe6e9;
    --border-light: #f1f1f1;
    
    --primary-color: #3498db;
    --primary-hover: #2980b9;
    --accent-bg: #fafafa;
    
    --input-bg: #ffffff;
    --input-border: #dfe6e9;
    
    --key-bg: #ffffff;
    --key-border: #cccccc;
    --key-hover: #f0f8ff;

    --mark-bg: #fffacd;
    --mark-shadow: #e6db55;
    
    --modal-overlay: rgba(0,0,0,0.5);
    --shadow-card: rgba(0,0,0,0.05);

    /* Admin colors */
    --admin-header-bg: #fff;
    --status-new-bg: #fff3cd; --status-new-text: #856404;
    --status-review-bg: #cce5ff; --status-review-text: #004085;
    --status-todo-bg: #e2e3e5; --status-todo-text: #383d41;
    --status-done-bg: #d4edda; --status-done-text: #155724;
    --status-rejected-bg: #f8d7da; --status-rejected-text: #721c24;
    --status-spam-bg: #555; --status-spam-text: #fff;
}

[data-theme="dark"] {
    --bg-body: #121212;
    --bg-container: #1e1e1e;
    --text-main: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-light: #95a5a6;
    --nav-bg: #1a1a1a;
    --border-color: #333333;
    --border-light: #2c2c2c;
    --primary-color: #5dade2;
    --primary-hover: #3498db;
    --accent-bg: #252525;
    --input-bg: #2c2c2c;
    --input-border: #444444;
    --key-bg: #2c2c2c;
    --key-border: #444444;
    --key-hover: #3a3a3a;
    --mark-bg: #b8860b;
    --mark-shadow: #8b6508;
    --modal-overlay: rgba(0,0,0,0.7);
    --shadow-card: rgba(0,0,0,0.5);
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    margin: 0; 
    background: var(--bg-body); 
    color: var(--text-main); 
    transition: background 0.3s, color 0.3s; 
    padding-top: 70px; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==========================================================================
   2. ELEMENTY SŁOWNIKA
   ========================================================================== */
.greek-headword, .greek { 
    font-family: 'GFS Didot', serif !important; 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    font-weight: bold; 
    cursor: pointer; 
}
.greek-headword:hover, .greek:hover { opacity: 0.8; text-decoration: underline; }
td.greek { font-size: 1.1rem; text-decoration: underline dotted; }
td.greek:hover { color: #1abc9c; background-color: #f0f8ff; }

.definition-box { 
    display: none; 
    margin-top: 10px; padding: 15px; 
    background: var(--accent-bg); 
    border-left: 3px solid var(--primary-color); 
    font-size: 1.3rem; line-height: 1.6; color: var(--text-main);
    font-family: 'GFS Didot';
}

#results-list { list-style: none; padding: 0; margin-top: 5px; border-top: 1px solid var(--border-light); }
.result-item { border-bottom: 1px solid var(--border-light); padding: 15px 0; }

.btn-report-internal { 
    background: var(--bg-container); border: 1px solid var(--border-color); color: var(--text-light); 
    font-size: 0.85rem; padding: 5px 10px; border-radius: 4px; 
    cursor: pointer; transition: all 0.2s;
    float: right; margin-bottom: 10px;
}
.btn-report-internal:hover { background: var(--key-hover); color: #c0392b; border-color: #ffcccc; }

.row { margin-bottom: 4px; display: block; }
.level-0 { margin-left: 0; }
.level-1 { padding-left: 15px; }
.level-2 { padding-left: 30px; margin-top: 10px; }
.level-3 { padding-left: 50px; text-indent: -20px; margin-left: 20px; }
.level-4 { padding-left: 70px; }

mark {
    background-color: var(--mark-bg); 
    color: #333; 
    padding: 0 2px;
    border-radius: 2px;
    box-shadow: 0 0 2px var(--mark-shadow);
}

/* ==========================================================================
   3. STRONA GŁÓWNA I KOMPONENTY
   ========================================================================== */
.container { 
    width: 100%; 
    max-width: 900px; 
    margin: 30px auto; 
    background: var(--bg-container); 
    padding: 30px; 
    box-shadow: 0 4px 15px var(--shadow-card); 
    border-radius: 8px; 
    transition: background 0.3s; 
    flex: 1; 
}

/* Nawigacja */
nav { 
    background: var(--nav-bg); 
    padding: 15px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    color: white; 
    transition: background 0.3s; 
}
nav a { 
    color: var(--nav-text); 
    text-decoration: none; 
    margin-left: 20px; 
    font-size: 0.9rem; 
    transition: color 0.3s; 
    cursor: pointer; 
}
nav a:hover { color: var(--nav-text-hover); }

.site-logo {
    height: 3em; 
    width: auto;   
    vertical-align: middle; 
    margin-right: 12px; 
    margin-bottom: 4px; 
}

.theme-toggle-btn {
    background: none; border: none; cursor: pointer; font-size: 1.2rem; margin-left: 20px; padding: 5px; color: var(--nav-text); transition: color 0.3s;
}
.theme-toggle-btn:hover { color: white; }

/* Stopka */
footer {
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    background: var(--bg-body);
    margin-top: 30px;
}

/* --- WYSZUKIWARKA Z PRZYCISKIEM "X" --- */
.search-input-group { 
    display: flex; 
    gap: 10px; 
    position: relative; 
    margin-bottom: 10px; 
}

/* Nowy kontener, który trzyma input i X razem */
.input-wrapper {
    position: relative;
    flex-grow: 1; /* To on teraz się rozciąga, a nie sam input */
    display: flex;
    align-items: center;
}

.search-input-group input[type="text"] { 
    width: 100%; /* Wypełnia wrapper */
    padding: 15px;
    padding-right: 40px; /* WAŻNE: Miejsce na "X" z prawej strony */
    font-size: 1.2rem;  
    background: var(--input-bg); 
    color: var(--text-main);
    border: 2px solid var(--input-border); 
    border-radius: 6px; 
    outline: none; 
    transition: border-color 0.3s, background 0.3s, color 0.3s;
    box-sizing: border-box;
}
.search-input-group input[type="text"]:focus { border-color: var(--primary-color); }

/* Styl przycisku "X" */
.search-clear-btn {
    position: absolute;
    right: 10px;      /* Odstęp od prawej krawędzi inputa */
    top: 50%;
    transform: translateY(-50%); /* Wyśrodkowanie w pionie */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0 5px;
    display: none;    /* Domyślnie ukryty */
    line-height: 1;
    z-index: 5;
}
.search-clear-btn:hover { color: var(--primary-color); }

.search-input-group .search-btn { 
    padding: 0 30px;    
    background-color: var(--primary-color); 
    color: white; 
    border: none; 
    border-radius: 6px; 
    font-size: 1.1rem; 
    cursor: pointer; 
    font-weight: bold; 
    transition: background 0.2s;
    box-sizing: border-box;
}
.search-input-group .search-btn:hover { background-color: var(--primary-hover); }
#search-status { font-size: 0.9rem; color: var(--text-light); margin-top: 15px; margin-bottom: 5px; text-align: right; min-height: 1.2em; }

/* --- MODALE --- */


.modal-overlay, .modal { 
    position: fixed; top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: var(--modal-overlay); 
    display: none; 
    justify-content: center; align-items: center; 
    z-index: 2000; /* Musi być wyżej niż nawigacja */
	
}

/* 1. DOMYŚLNY STYL (Dla małych okienek: Zgłoś hasło, Kontakt) */
.modal-content { 
    background: var(--bg-container); 
    color: var(--text-main); 
    width: 90%; 
    max-width: 500px; 
    padding: 25px; 
    border-radius: 8px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    position: relative; 
    
    /* Domyślne zachowanie: przewijaj całą kartkę */
    max-height: 90vh;
    overflow-y: auto; 
}

/* 2. NADPISANIE DLA OKNA INFORMACJI (Specjalny tryb "sztywny") */
/* Klasa .info-modal-content jest dodana w HTML obok .modal-content */
.info-modal-content {
    max-width: 800px;    /* Szersze okno */
    width: 95%; 
    height: 85vh;        /* Sztywna wysokość */
    max-height: 85vh; 
    padding: 0;          /* Resetujemy padding, by header był na krawędzi */
    
    display: flex;           /* Włączamy układ Flexbox */
    flex-direction: column;  /* Elementy jeden pod drugim */
    
    /* KLUCZOWA POPRAWKA: Zabieramy suwak z głównego okna! */
    overflow: hidden !important; 
}

/* 3. WNĘTRZE OKNA INFO (Kontener wstrzykiwany przez JS/PHP) */
#info-modal-body {
    flex: 1;                 /* Rozciągnij się na całą dostępną wysokość */
    display: flex;           
    flex-direction: column;
    overflow: hidden;        /* Ukryj to, co wystaje, by nie dublować suwaków */
    padding: 25px;           /* Tu dajemy padding, który zabraliśmy wyżej */
    padding-top: 45px;       /* Extra miejsce u góry, żeby tekst nie wszedł pod "X" */
}

/* 4. OBSZAR PRZEWIJANIA (Tylko tabela ze skrótami) */
.info-scroll-area {
    flex: 1;                 /* Wypełnij resztę miejsca */
    overflow-y: auto;        /* WŁĄCZ PRZEWIJANIE TYLKO TUTAJ */
    padding-right: 10px;     /* Odstęp treści od suwaka */
    border-top: 1px solid var(--border-light); /* Opcjonalnie: linia oddzielająca */
    margin-top: 10px;
}

/* --- Reszta elementów modala --- */
.modal-header { 
    font-size: 1.2rem; margin-bottom: 20px; font-weight: bold; 
    color: var(--text-main); border-bottom: 1px solid var(--border-light); 
    padding-bottom: 10px; 
}

.modal-footer, .modal-actions { 
    display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; 
}

/* Przycisk zamkania "X" */
.close-modal, .close-modal-btn { 
    position: absolute; 
    top: 10px; right: 15px; /* Lekka korekta pozycji */
    background: none; border: none; 
    font-size: 2rem; line-height: 1; 
    color: var(--text-light); 
    cursor: pointer; 
    z-index: 10; 
    padding: 5px;
}
.close-modal:hover { color: #c0392b; } /* Podświetlenie na czerwono */

/* Formularze */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 0.9rem; color: var(--text-muted); }
.form-control { 
    width: 100%; padding: 10px; border: 1px solid var(--border-color); 
    background: var(--input-bg); color: var(--text-main); border-radius: 4px; 
    font-family: inherit; 
}
textarea.form-control { height: 100px; resize: vertical; }

.btn-submit { background: var(--primary-color); color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-size: 1rem; }
.btn-cancel { background: var(--border-light); color: var(--text-main); border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; }

/* ==========================================================================
   4. KLAWIATURA GRECKA
   ========================================================================== */
.kb-toggle { cursor: pointer; color: var(--primary-color); font-size: 0.9rem; margin-top: 5px; display: inline-block; user-select: none; }

#greek-keyboard { 
    display: none; margin-top: 15px; background: var(--bg-container); 
    padding: 10px; border: 1px solid var(--border-color); 
    border-radius: 8px; box-shadow: 0 4px 6px var(--shadow-card); 
}

.kb-row {
    display: flex; flex-flow: row nowrap; justify-content: center;
    gap: 4px; margin-bottom: 6px; width: 100%;
}

.kb-variants-container {
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
    padding: 8px; background: transparent; border: none;            
    border-radius: 4px; min-height: 50px;
    max-width: 420px; margin: 0 auto; 
}

.kb-section { 
    display: flex; flex-wrap: wrap; gap: 5px; 
    justify-content: center; margin-bottom: 10px; 
}
.kb-upper { padding-bottom: 10px; border-bottom: 1px dashed var(--border-light); }

.key-btn { 
    min-width: 40px; height: 42px; padding: 0;
    background: var(--key-bg); color: var(--text-main);
    border: 1px solid var(--key-border); border-radius: 5px; 
    font-family: 'GFS Didot', serif; font-size: 1.3rem; 
    cursor: pointer; display: flex; align-items: center; justify-content: center; 
    -webkit-tap-highlight-color: transparent; touch-action: manipulation; user-select: none;
    transition: background 0.1s, transform 0.05s;
}

.key-backspace {
    font-family: sans-serif; font-size: 1.1rem;
    background-color: #fff0f0; border-color: #ffcccb; color: #c0392b;
    margin-left: 10px; min-width: 48px; 
}

.key-variant-trigger {
    font-weight: bold; border: 2px solid var(--primary-color) !important; 
    background-color: #ffffff; color: var(--primary-color); 
    box-shadow: 0 2px 0 rgba(0,0,0,0.1);
}
.key-back {
    background-color: #ffebee !important; color: #c0392b !important;
    font-weight: bold; border-color: #ffcccc !important;
}

.key-btn:focus { outline: none; background: var(--key-bg); border-color: var(--key-border); }
.key-btn:active, .key-btn.key-active {
    background-color: var(--key-hover) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(2px); 
}

@media (hover: hover) {
    .key-btn:hover { background: var(--key-hover); border-color: var(--primary-color); }
    .key-backspace:hover { background-color: #ffcdcd; }
}

/* ==========================================================================
   5. RESPONSYWNOŚĆ
   ========================================================================== */
@media (max-width: 768px) {
    nav { padding: 10px 15px; }
    
    .container { margin: 15px 10px; padding: 20px 15px; width: calc(100% - 20px); max-width: none; }
    .search-options-top { justify-content: space-around; gap: 10px; }
    .search-input-group { flex-direction: column; width: 100%; }
    .search-input-group input[type="text"] { width: 100%; margin: 0; }
    .search-input-group .search-btn { width: 100%; padding: 15px; margin: 0; }

    #greek-keyboard { padding: 5px; }
    .kb-row { gap: 3px; }
    .kb-variants-container { max-width: none; }

    .key-btn {
        flex: 1; min-width: auto; max-width: 50px; 
        height: 46px; font-size: 1.4rem;
    }
    .key-backspace { flex: 1.3; min-width: 45px; margin-left: 5px; }
    .kb-upper .key-btn { flex: 0 0 auto; width: 8vw; max-width: 35px; height: 40px; font-size: 1.1rem; }

    .greek-headword { font-size: 1.3rem; }
    .definition-box { font-size: 1.1rem; padding: 10px; overflow-x: auto; }
    .card { width: 100%; overflow-x: auto; }
}

@media (max-width: 360px) {
    .search-options-top { flex-direction: column; align-items: flex-start; }
    .key-btn { height: 40px; font-size: 1.2rem; } 
}   

/* Dark Mode Fixes */
[data-theme="dark"] .key-variant-trigger {
    background-color: #2c3e50; color: #ecf0f1; border-color: #3498db !important; box-shadow: none;
}
[data-theme="dark"] .key-backspace {
    background-color: #4a2323; border-color: #c0392b; color: #ffcccc;
}
[data-theme="dark"] .kb-variants-container { background: transparent; border: none; }

@media (prefers-color-scheme: dark) {
    [data-theme="dark"] .key-variant-trigger { background-color: #2c3e50; color: #ecf0f1; }
}

/* Dodaj na końcu style.css */
#info-modal-body {
    overflow-y: auto; /* Przewijaj tylko ten element */
    min-height: 0;    /* Wymagane dla poprawnego działania scrolla w flexboxie */
}

/* ==========================================================================
   6. PANEL ADMINA (NOWY STYL - BIG STYLE)
   ========================================================================== */

/* Specyficzne nadpisania dla body w adminie */
body.admin-page {
    padding: 20px;
    background: #f4f6f8; 
}

/* Nagłówek */
.header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 20px; 
    background: var(--admin-header-bg); 
    padding: 15px 25px; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

/* Przyciski w nagłówku */
.btn-logout { 
    background: #c0392b; 
    color: white; 
    text-decoration: none; 
    padding: 8px 15px; 
    border-radius: 4px; 
    font-size: 0.9rem; 
    transition: 0.3s; 
}
.btn-logout:hover { background: #a93226; }

/* Filtry (Pastylki) */
.filters { 
    display: flex; 
    gap: 8px; 
    margin-bottom: 20px; 
    flex-wrap: wrap; 
}
.filter-btn { 
    text-decoration: none; 
    padding: 6px 12px; 
    border-radius: 20px; 
    background: #e0e0e0; 
    color: #555; 
    font-size: 0.85rem; 
    transition: 0.2s; 
    border: 1px solid transparent; 
    display: flex;
    align-items: center;
}
.filter-btn:hover { background: #d0d0d0; }
.filter-btn.active { 
    background: #3498db; 
    color: white; 
    font-weight: bold; 
}
.count-badge { 
    background: rgba(0,0,0,0.1); 
    padding: 1px 6px; 
    border-radius: 10px; 
    font-size: 0.8em; 
    margin-left: 5px; 
}

/* Tabela i Karta */
.card { 
    background: white; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
    overflow: hidden; 
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; }
th { 
    background: #ecf0f1; 
    color: #7f8c8d; 
    font-weight: 600; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
tr:last-child td { border-bottom: none; }
tr:hover td { background-color: #fafafa; }

/* Statusy (Kolorowe badge) */
.status-badge { 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 0.7rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    display: inline-block; 
    white-space: nowrap; 
}
.st-new { background: var(--status-new-bg); color: var(--status-new-text); border: 1px solid #ffeeba; }
.st-in_review { background: var(--status-review-bg); color: var(--status-review-text); border: 1px solid #b8daff; }
.st-to_implement { background: var(--status-todo-bg); color: var(--status-todo-text); border: 1px solid #d6d8db; }
.st-done { background: var(--status-done-bg); color: var(--status-done-text); border: 1px solid #c3e6cb; }
.st-rejected { background: var(--status-rejected-bg); color: var(--status-rejected-text); text-decoration: line-through; border: 1px solid #f5c6cb; }
.st-spam { background: var(--status-spam-bg); color: var(--status-spam-text); border: 1px solid #333; }

/* Akcje (Przyciski w tabeli) */
.actions-group { display: flex; gap: 5px; }
.btn-sm { 
    cursor: pointer; 
    padding: 5px 10px; 
    border: none; 
    border-radius: 4px; 
    font-size: 0.75rem; 
    color: white; 
    opacity: 0.9; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    text-decoration: none;
}
.btn-sm:hover { opacity: 1; transform: translateY(-1px); }
.act-action { background: #3498db; }
.act-history { background: #7f8c8d; }

.empty-state { text-align: center; padding: 50px; color: #999; font-style: italic; }

/* Historia */
.history-list { list-style: none; padding: 0; max-height: 300px; overflow-y: auto; }
.history-item { border-left: 3px solid #ddd; padding-left: 15px; margin-bottom: 15px; position: relative; }
.history-meta { font-size: 0.85rem; color: #777; margin-bottom: 5px; }
.history-status { font-weight: bold; color: #333; }
.history-comment { background: #f9f9f9; padding: 8px; border-radius: 4px; font-style: italic; margin-top: 5px; }

/* Responsywność dla Admina */
@media (max-width: 768px) {
    body.admin-page { padding: 10px; }
    .header { flex-direction: column; align-items: flex-start; gap: 15px; padding: 15px; }
    .header div { width: 100%; justify-content: space-between; display: flex; }
    
    .filters { gap: 5px; justify-content: flex-start; overflow-x: auto; padding-bottom: 5px; }
    .filter-btn { font-size: 0.8rem; padding: 8px 12px; white-space: nowrap; }

    .card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    
    /* Ukrywanie mniej ważnych kolumn na mobile */
    th:nth-child(4), td:nth-child(4), /* Uwagi */
    th:nth-child(5), td:nth-child(5)  /* Kontakt */
    { display: none; }

    .btn-sm { padding: 6px 10px; font-size: 0.8rem; width: 100%; margin-bottom: 5px; }
    .actions-group { display: block; }
}

/* ==========================================================================
   7. SZYBKA NAPRAWA PRZYCISKÓW W ADMINIE (FIX)
   ========================================================================== */

/* 1. Zaokrąglamy WSZYSTKIE przyciski w panelu admina */
.admin-page button,
.admin-page .btn-sm,
.admin-page .btn-save,
.admin-page .btn-logout,
.admin-page input[type="submit"] {
    border-radius: 6px !important; /* Ładne zaokrąglenie */
    border: none !important;       /* Usuwamy brzydką ramkę 3D */
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

/* 2. Naprawa przycisku "Zaktualizuj hasło" i "Pobierz bazę" */
.admin-page .btn-save {
    background-color: #2c3e50 !important; /* Ciemny granat (widoczny) */
    color: white !important;              /* Biały tekst */
    padding: 10px 20px !important;
    font-size: 1rem !important;
    font-weight: bold;
    display: inline-block;
}

.admin-page .btn-save:hover {
    background-color: #34495e !important; /* Jaśniejszy granat po najechaniu */
    transform: translateY(-1px);
}

/* 3. Specjalny styl dla pomarańczowego przycisku "Analizuj" (jeśli jest używany) */
.admin-page button[style*="background: #e67e22"] {
    border-radius: 6px !important; /* On też musi być okrągły */
}

/* 4. Małe przyciski w tabeli (Zmień / Historia) - wymuszamy wygląd */
.admin-page .btn-sm {
    border-radius: 4px !important; /* Nieco mniejsze zaokrąglenie dla małych */
    padding: 6px 12px !important;
    color: #fff !important;        /* Wymuszamy biały tekst */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* --- PWA: Baner dla iOS --- */
.ios-prompt {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--bg-container);
    border-top: 1px solid var(--primary-color);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2500;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-main);
    box-sizing: border-box;
    animation: slideUp 0.5s ease-out;
}
.ios-prompt button {
    background: var(--primary-color);
    color: white;
    border: none; padding: 8px 20px;
    border-radius: 20px; font-size: 0.9rem; cursor: pointer;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

[data-theme="dark"] .ios-prompt { background: #2c2c2c; border-top: 1px solid #3498db; }