 
    :root {
        --green-dark: #0f3d2e;
        --green-main: #1b5e46;
        --green-accent: #2f8f6b;
        --green-highlight: #3cb371;
        --text-light: #f1f5f3;
        --text-muted: #cfd8d3;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    body {
        background: linear-gradient(135deg, var(--green-dark), var(--green-main));
        color: var(--text-light);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 32px;
        width: 100%;
        max-width: 520px; /* шире */
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

.logo {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1.5px;
    margin-top: 12px;
}

.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

    .prayers {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .prayer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 22px;
        border-radius: 18px;
        background: rgba(255,255,255,0.07);
    }

    .prayer-name {
        font-size: 26px; /* было 16 */
        font-weight: 600;
    }

    .prayer-time {
        font-size: 32px; /* было 18 */
        font-weight: 700;
        letter-spacing: 1px;
    }

    /* Активный (қамат) */
    .active {
        background: var(--green-highlight);
        color: #062b1f;
    }

    .active .prayer-name {
        font-size: 30px;
        font-weight: 800;
    }

    .active .prayer-time {
        font-size: 48px; /* ОЧЕНЬ КРУПНО */
        font-weight: 900;
    }

    .note {
        margin-top: 28px;
        text-align: center;
        font-size: 20px;
        color: var(--text-muted);
    }

    @media (max-width: 500px) {
        .prayer-name {
            font-size: 22px;
        }

        .prayer-time {
            font-size: 28px;
        }

        .active .prayer-time {
            font-size: 42px;
        }
    }
    .location {
    text-align: center;
    margin-bottom: 18px;
}

 

.location {
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.city {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.4px;
}

.mosque {
    font-size: 22px;
    font-weight: 700;
    margin-top: 2px;
    color: #e7f3ee;
}
.edit-btn {
    display: inline-block;
    margin: 18px auto 24px;
    padding: 14px 32px;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #083023;
    background: linear-gradient(135deg, #4fd1a5, #3cb371);

    border-radius: 999px; /* таблетка */
    text-decoration: none;
    text-align: center;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.5);

    transition: all 0.25s ease;
}

.edit-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.edit-btn:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(0,0,0,0.15);
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.refresh-btn {
    padding: 6px 14px;          /* было 10x20 */
    font-size: 14px;            /* было 16 */
    font-weight: 600;

    color: #083023;
    background: linear-gradient(135deg, #8be6c8, #6fd3b2);

    border-radius: 999px;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.refresh-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.28);
}
.disclaimer {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);

    font-size: 15px;
    text-align: center;
    color: #e7f3ee;
}
.disclaimer.warning {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.4);
    color: #fff3cd;
}
 
 .select-block {
    margin-bottom: 18px;
    text-align: center;
}

.select-label {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.city-select select {
    width: 100%;
    max-width: 360px;

    padding: 14px 18px;
    font-size: 18px;
    font-weight: 600;

    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.12);



}
.add-mosque-link {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: underline;
}.add-mosque {
    margin-top: 28px;
    text-align: center;
}

.add-mosque-btn {
    display: inline-block;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;

    color: var(--text-light);
    background: rgba(255,255,255,0.08);

    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 999px;

    text-decoration: none;
    transition: all .25s ease;
}

.add-mosque-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-1px);
}
.location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.location-text {
    text-align: left;
}

.change-location {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    white-space: nowrap;

    color: #083023;
    background: linear-gradient(135deg, #9be5c8, #6fd3b2);
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all .2s ease;
}

.change-location:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.city-select select {
    color: #f1f5f3;            /* БЕЛЫЙ ТЕКСТ */
    background-color: rgba(255,255,255,0.12);
}

/* Текст в раскрытом списке */
.city-select select option {
    color: #083023;            /* тёмный — лучше читается */
    background-color: #ffffff; /* стандартный фон */
}