/* Y360 Test App Styles */

#y360-test-app {
    font-family: 'Outfit', sans-serif;
}

/* Smooth transitions for inputs */
input,
select {
    transition: all 0.2s ease;
}

input:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Timer Circle Animation */
#timer-circle {
    transition: stroke-dashoffset 1s linear;
}

/* Clean Custom Scrollbar for the page if content overflows */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Answer Button Hover Effects */
.btn-answer:active {
    transform: scale(0.98);
}