@tailwind base;
@tailwind components;
@tailwind utilities;

.unit-tab.active {
    background-color: #004098;
    color: white;
}

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

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #004098;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #002b66;
}