/* Custom styles for animations and transitions */
.transition-all {
    transition: all 0.2s ease-in-out;
}

/* Radio input styling: Hidden input, but used for label-based selection */
input[type="radio"].hidden-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Scenario text panel styling */
.scenario-panel {
    max-height: 400px;
    overflow-y: auto;
}

/* Dark mode scrollbar tweaks */
.dark ::-webkit-scrollbar {
    width: 8px;
}

.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

.dark ::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}
