/* Estilos y Animaciones del Portal de Liderazgo (Dashboard) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Outfit', sans-serif;
}

@keyframes floatGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-bg {
    background: linear-gradient(-45deg, #172172, #0b113a, #1e2b9a, #040614);
    background-size: 400% 400%;
    animation: floatGradient 15s ease infinite;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Custom scrollbar for table and feed */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.3);
}
::-webkit-scrollbar-thumb {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(51, 65, 85, 0.8);
}
