/* HacettepeBot — Minimal custom styles */

/* Smooth transitions */
select, input, button {
    transition: all 0.15s ease;
}

/* Progress steps scroll */
#progressSteps {
    max-height: 300px;
    overflow-y: auto;
}

/* Modal backdrop click to close */
#patientModal > div:first-child {
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Slot grid hover */
#slotGrid > div:hover {
    transform: scale(1.03);
    transition: transform 0.1s ease;
}
