/* Namaz Vakitleri Sayfası */
.prayer-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #1b5e3b 0%, #2e7d52 50%, #1b5e3b 100%);
    padding: 0 0 40px;
}

.prayer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.prayer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #fff;
}

.prayer-header h1 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.header-right {
    font-size: 14px;
}

/* Üst Kart - Vakitler */
.prayer-top-card {
    background: linear-gradient(180deg, #166534 0%, #15803d 100%);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.prayer-times-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-time-box {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
}

.prayer-time-box.active {
    background: rgba(255,255,255,0.25);
}

.prayer-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.prayer-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.countdown-box {
    background: #fff;
    border-radius: 6px;
    padding: 12px 25px;
    text-align: center;
    min-width: 180px;
}

.countdown-box .countdown-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.countdown-box .countdown-value {
    font-size: 32px;
    font-weight: 700;
    color: #166534;
    font-family: 'Courier New', monospace;
}

/* Aylık Kart */
.monthly-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.monthly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.monthly-header h2 {
    font-size: 16px;
    color: #166534;
    margin: 0;
}

.city-search select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    min-width: 150px;
}

.table-responsive {
    overflow-x: auto;
}

.monthly-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.monthly-table th {
    background: #166534;
    color: #fff;
    padding: 12px 10px;
    font-weight: 600;
    text-align: center;
}

.monthly-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.monthly-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}

.monthly-table tbody tr:hover {
    background: #dcfce7;
}

.monthly-table tr.today {
    background: #bbf7d0 !important;
    font-weight: 600;
}

.monthly-table tr.today td {
    color: #166534;
}

.monthly-table .loading {
    padding: 30px;
    color: #666;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .prayer-header h1 {
        font-size: 18px;
    }

    .prayer-value {
        font-size: 18px;
    }

    .countdown-box .countdown-value {
        font-size: 26px;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .prayer-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .prayer-times-row {
        flex-wrap: wrap;
    }

    .prayer-time-box {
        flex: 0 0 30%;
    }

    .countdown-box {
        flex: 0 0 100%;
        margin-top: 10px;
    }

    .monthly-header {
        flex-direction: column;
        gap: 10px;
    }

    .monthly-header h2 {
        font-size: 14px;
    }

    .monthly-table {
        font-size: 12px;
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 480px) {
    .prayer-header h1 {
        font-size: 16px;
    }

    .prayer-time-box {
        flex: 0 0 31%;
        padding: 8px 4px;
    }

    .prayer-label {
        font-size: 11px;
    }

    .prayer-value {
        font-size: 16px;
    }

    .countdown-box {
        padding: 10px 15px;
        min-width: auto;
    }

    .countdown-box .countdown-value {
        font-size: 24px;
    }

    .monthly-table {
        font-size: 10px;
    }

    .monthly-table th,
    .monthly-table td {
        padding: 6px 3px;
    }

    .city-search select {
        min-width: 120px;
        font-size: 12px;
    }
}

