/* Dynamic Prayer Time Themes */

body.theme-subuh {
    background: linear-gradient(135deg, #b993d6 0%, #8ca6db 100%);
}

body.theme-syuruk {
    background: linear-gradient(135deg, #ffa751 0%, #ffe259 100%);
}

body.theme-zohor {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body.theme-asar {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

body.theme-maghrib {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
}

body.theme-isyak {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

/* Transition animation between themes */
body {
    transition: background 2s ease;
}

/* Theme toggle button */
.theme-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

/* Settings panel for themes */
.theme-settings {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.theme-settings.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.theme-settings h4 {
    margin-bottom: 10px;
    color: #667eea;
    font-size: 0.9rem;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.theme-option:hover {
    background: #f0f0f0;
}

.theme-option input[type="radio"] {
    cursor: pointer;
}

.theme-option label {
    cursor: pointer;
    font-size: 0.9rem;
}

