/* Custom styles for a better look and feel */
body {
    font-family: 'Inter', sans-serif;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #4f46e5;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #1f2937;
}

.slider-thumb::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #4f46e5;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #1f2937;
}

.checkbox-custom {
    appearance: none;
    -webkit-appearance: none;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 0.375rem;
    border: 2px solid #4b5563;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s;
}

.checkbox-custom:checked {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.checkbox-custom:checked::after {
    content: '✔';
    font-size: 1rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
