/* Character Selection Modal Styles */

#character-selection-modal {
    animation: fadeIn 0.3s ease-out;
}

#character-selection-modal > div {
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Character card hover effects */
#character-selection-content button {
    transition: all 0.2s ease;
}

#character-selection-content button:hover {
    transform: translateY(-2px);
}

/* Scrollable content area */
#character-selection-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar */
#character-selection-content::-webkit-scrollbar {
    width: 6px;
}

#character-selection-content::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

#character-selection-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

#character-selection-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}