/* Prayer Times Panel - Additional Styles */
/* Core styles are in style.css; these are supplemental */

@keyframes yankasa-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.yankasa-prayer-time-card--active {
    animation: yankasa-pulse 2s ease-in-out infinite;
}

.yankasa-prayer-times--loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yankasa-prayer-times--loading::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--yankasa-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
