.prayer-widget {
    position: relative;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    /* yeşil zemin */
    overflow: hidden;
}

.prayer-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/core/public/assets/redblack/img/namaz_kare.png') no-repeat center center / cover;
    opacity: 0.1;
    /* resmi yarı saydam yapar */
    z-index: 0;
}

/* İçerik z-index'i artır */
.prayer-widget>* {
    position: relative;
    z-index: 1;
}

.city-select {
    width: 100%;
    padding: 6px 8px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}

.next-prayer {
    font-size: 14px;
    margin-bottom: 15px;
}

.prayer-row {
    background: #f8f8f8;
    color: #000;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prayer-row.active {
    background: #2e7d4e;
    color: #fff;
}

.prayer-row i {
    color: inherit;
}

.prayer-row:last-child {
    margin-bottom: 0;
}

.next-prayer.countdown {
    background-color: #ffffff10;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, color 0.3s ease;
}