/* ===========================================
   Suhoor/Iftar Timing Calculator - Tool Specific Styles (Teal/Sunset Orange Theme)
   =========================================== */

/* Tool Layout */
.sict-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* --- Header & Location Display --- */
.sict-header-display {
    background: #115e59; /* Deep Teal BG */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

#locationDisplay, #currentDate {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ccfbf1; /* Pale Teal Text */
    margin-bottom: 5px;
}

/* --- Schedule Table --- */
.sict-schedule-container {
    background: #ffffff;
    border: 1px solid #99f6e4;
    border-radius: 12px;
    padding: 20px 10px;
    margin-top: 30px;
}

.sict-schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px; /* Space between rows */
    font-size: 1.1rem;
}

.sict-schedule-table thead th {
    background: #2dd4bf; /* Medium Teal Header */
    color: #115e59;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 10px;
    border-radius: 8px 8px 0 0;
    font-size: 1.2rem;
}

.sict-schedule-table tbody tr {
    transition: background-color 0.3s;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sict-schedule-table td {
    padding: 15px 10px;
    text-align: center;
    background: #f0fdfa; /* Very Pale Teal Row BG */
    border-bottom: 1px solid #ccfbf1;
}

/* Prayer Name Column */
.sict-prayer-name {
    font-weight: 600;
    color: #0f766e; /* Dark Teal Text */
    text-align: left !important;
    padding-left: 20px !important;
    font-size: 1.2rem;
}

/* Prayer Time Value */
.sict-time-value {
    font-weight: 800;
    font-size: 1.5rem;
}

.sict-suhoor .sict-time-value {
    color: #4c1d95; /* Deep Purple for Suhoor/Fajr */
}

.sict-iftar .sict-time-value {
    color: #f97316; /* Sunset Orange for Iftar/Maghrib */
    font-size: 1.6rem;
}

/* Daily Section Divider */
.sict-day-header {
    background: #fcd34d; /* Gold/Yellow Separator */
    color: #9a3412;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Geolocation Error/Status */
#statusMessage {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .sict-header-display {
        padding: 15px;
    }
    #locationDisplay, #currentDate {
        font-size: 1rem;
    }
    .sict-schedule-table thead th {
        font-size: 1rem;
    }
    .sict-schedule-table td {
        padding: 10px 5px;
    }
    .sict-prayer-name {
        padding-left: 10px !important;
        font-size: 1.1rem;
    }
    .sict-time-value {
        font-size: 1.3rem;
    }
    .sict-iftar .sict-time-value {
        font-size: 1.4rem;
    }
}