/* Moon Sign Calculator - Lunar & Indigo Styling */

.apple-glass {
    background: rgba(24, 20, 36, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(99, 102, 241, 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(79, 70, 229, 0.15);
    box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.08);
}

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

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

.custom-input:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 18px rgba(99, 102, 241, 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(99, 102, 241, 0.25) !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
    color: #818cf8 !important;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}

html:not(.dark) .preset-active {
    background: #e0e7ff !important;
    border-color: #6366f1 !important;
    color: #3730a3 !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

/* Custom range slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #818cf8;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(129, 140, 248, 0.6);
}

html:not(.dark) input[type="range"]::-webkit-slider-thumb {
    background: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}
