/* ===========================
   BD Prayer Times Widgets
   =========================== */

/* Prayer Times Widget */
.bd-widget-prayer-times {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bd-widget-prayer-times .widget-date {
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-radius: 4px;
    margin-bottom: 15px;
}

.bd-widget-prayer-times .prayer-times-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bd-widget-prayer-times .prayer-times-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.bd-widget-prayer-times .prayer-times-list li:last-child {
    border-bottom: none;
}

.bd-widget-prayer-times .prayer-name {
    font-weight: 500;
    color: #333;
}

.bd-widget-prayer-times .prayer-time {
    font-weight: 600;
    color: #2c5282;
}

.bd-widget-prayer-times .widget-footer {
    margin-top: 15px;
    text-align: center;
}

.bd-widget-prayer-times .widget-footer a {
    display: inline-block;
    padding: 8px 16px;
    background: #2c5282;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

.bd-widget-prayer-times .widget-footer a:hover {
    background: #1e3a5f;
}

/* Ramadan Widget */
.bd-widget-ramadan-times {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bd-widget-ramadan-times .widget-date {
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-radius: 4px;
    margin-bottom: 15px;
}

.bd-widget-ramadan-times .ramadan-times-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.bd-widget-ramadan-times .ramadan-time-box {
    text-align: center;
    padding: 15px 10px;
    border-radius: 6px;
    background: #f8f9fa;
}

.bd-widget-ramadan-times .ramadan-time-box.sehri {
    background: #e6f7ff;
    border: 2px solid #91d5ff;
}

.bd-widget-ramadan-times .ramadan-time-box.iftar {
    background: #fff7e6;
    border: 2px solid #ffd666;
}

.bd-widget-ramadan-times .time-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.bd-widget-ramadan-times .time-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c5282;
}

.bd-widget-ramadan-times .widget-countdown {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 15px;
}

.bd-widget-ramadan-times .widget-footer {
    text-align: center;
}

.bd-widget-ramadan-times .widget-footer a {
    display: inline-block;
    padding: 8px 16px;
    background: #2c5282;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
}

.bd-widget-ramadan-times .widget-footer a:hover {
    background: #1e3a5f;
}

/* District Selector Widget */
.bd-widget-district-selector {
    padding: 5px 0;
}

.bd-widget-district-selector .bd-district-dropdown {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.bd-widget-district-selector .bd-district-dropdown:focus {
    outline: none;
    border-color: #2c5282;
}

/* Next Prayer Widget */
.bd-widget-next-prayer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: #fff;
}

.bd-widget-next-prayer .next-prayer-name {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.bd-widget-next-prayer .next-prayer-time {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bd-widget-next-prayer .next-prayer-countdown {
    font-size: 13px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .bd-widget-ramadan-times .ramadan-times-grid {
        grid-template-columns: 1fr;
    }
}
