/* Custom Styles - Portal Olímpico 2026 */
.content-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #8b5cf6 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #111827;
}
::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Inputs styling focus */
input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Utilities for animations */
.tab-content {
    animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}