/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Option animations and styling */
.option-label {
    transition: all 0.05s ease;
}
.option-input:checked + .option-box {
    border-color: #4F46E5;
    background-color: #EEF2FF;
}
.option-input:checked + .option-box .radio-dot {
    border-color: #4F46E5;
    background-color: #4F46E5;
}
.option-input:checked + .option-box .radio-dot::after {
    transform: scale(1);
}

.radio-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.05s ease;
    flex-shrink: 0;
}
.radio-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.05s ease;
}

.checkbox-dot {
    border-radius: 6px;
}
.checkbox-dot::after {
    content: '';
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    margin-bottom: 2px;
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}