/* c:/xampp/htdocs/kanban/assets/css/style.css */

.quiz-step {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    transform: translateY(20px);
}

.quiz-step.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    top: 0;
    visibility: visible;
    transform: translateY(0);
}

.quiz-step.prev-step {
    transform: translateY(-20px);
    opacity: 0;
}

/* Custom Radion Buttons for the Cards */
.radio-card input[type="radio"] {
    display: none;
}

.radio-bg {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #112240;
    border: 1px solid #1e3a8a;
    border-radius: 0.75rem;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.2s ease-in-out;
    color: #e2e8f0;
}

.radio-card:hover .radio-bg {
    background-color: #172a4d;
    border-color: #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.radio-card input[type="radio"]:checked + .radio-bg {
    background-color: rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
    color: white;
    box-shadow: 0 0 0 1px #0ea5e9, 0 4px 20px rgba(14, 165, 233, 0.2);
    font-weight: 500;
}

/* Custom Inputs */
.custom-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #112240;
    border: 1px solid #1e3a8a;
    border-radius: 0.75rem;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    outline: none;
}

.custom-input:focus {
    border-color: #0ea5e9;
    background-color: rgba(14, 165, 233, 0.05);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.custom-input::placeholder {
    color: #475569;
}

/* Scrollbar tweaks */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b1726;
}
::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0ea5e9;
}
