/* Custom Tailwind overrides and specific styles */

/* Tabs */
.tab-btn.active {
    background-color: #a855f7; /* Purple-500 */
    color: white;
}
.tab-btn.inactive {
    background-color: transparent;
    color: #94a3b8; /* Slate-400 */
}
.tab-btn.inactive:hover {
    background-color: #1e293b; /* Slate-800 */
    color: white;
}

/* Range input */
.custom-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #a855f7;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
    transition: transform 0.1s ease-in-out;
}
.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.custom-range::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

.custom-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #a855f7;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
    border: none;
    transition: transform 0.1s ease-in-out;
}
.custom-range::-moz-range-thumb:hover {
    transform: scale(1.15);
}
.custom-range::-moz-range-thumb:active {
    transform: scale(0.95);
}

/* Checkboxes */
input[type="checkbox"]:checked + .day-box {
    background-color: #a855f7;
    color: white;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.day-box {
    user-select: none;
}
