/* style.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 450px;
}

/* Header dan Info */
h1 {
    font-size: 1.8rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 5px;
}

.lokasi-info {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* Tabel Jadwal */
.jadwal-sholat table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; 
}

.jadwal-sholat th {
    display: none; 
}

.jadwal-sholat td {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.jadwal-sholat td span:first-child {
    font-weight: 500;
    color: #495057;
}

.jadwal-sholat td span:last-child {
    font-weight: 700;
    font-size: 1.3rem;
    color: #28a745; 
}

/* Responsive Time Highlight */
.active-time {
    background-color: #e6f0ff !important; 
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2) !important;
    border: 1px solid #007bff;
}

.active-time span:last-child {
    color: #007bff; 
}

/* Log Status (Untuk Debugging) */
.log-status {
    margin-top: 25px;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #333;
    background-color: #ffffee;
    border-left: 5px solid #ffc107;
}