/* Sade Sati Calculator - Cosmic & Amber Styling */

.apple-glass {
    background: rgba(24, 20, 36, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

html:not(.dark) .apple-glass {
    background: #ffffff;
    border: 1px solid rgba(217, 119, 6, 0.15);
    box-shadow: 0 10px 30px -5px rgba(217, 119, 6, 0.08);
}

.custom-input {
    background: rgba(15, 12, 26, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fef3c7;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html:not(.dark) .custom-input {
    background: #ffffff;
    border: 1px solid #fde68a;
    color: #451a03;
}

.custom-input:focus {
    border-color: #f59e0b;
    outline: none;
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.35);
}

.custom-input option {
    background-color: #181424;
    color: #f8fafc;
}

html:not(.dark) .custom-input option {
    background-color: #ffffff;
    color: #0f172a;
}

.preset-active {
    background: rgba(245, 158, 11, 0.25) !important;
    border-color: rgba(245, 158, 11, 0.6) !important;
    color: #fbbf24 !important;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

html:not(.dark) .preset-active {
    background: #fef3c7 !important;
    border-color: #f59e0b !important;
    color: #92400e !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

/* Phase Status Badge Glow */
.phase-glow-active {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.phase-glow-free {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Attribute & Phase Cards */
.sati-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.2s ease;
}

html:not(.dark) .sati-card {
    background: #fffbeb;
    border: 1px solid #fef3c7;
}

.sati-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}
