/* Fuente Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Azul marino personalizado */
:root {
    --azul-marino: #0d0f3d;
    --azul-marino-oscuro: #0d0f3d;
    --azul-marino-claro: #0d0f3d;
}

/* Aplicar fuente Poppins a todo el sitio */
* {
    font-family: 'Poppins', Arial !important;
}

/* Los iconos de Font Awesome necesitan su propia fuente */
.fas, .far, .fal, .fab, .fa, [class^="fa-"], [class*=" fa-"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

/* Estilos adicionales personalizados si se necesitan */
.content-section {
    transition: opacity 0.3s ease-in-out;
}

/* Centrar contenido verticalmente para formularios de upload */
.content-section.flex {
    flex: 1;
    align-items: center;
    justify-content: center;
}

/* Efectos hover para las opciones del menú */
.menu-item {
    transition: all 0.2s ease-out;
    cursor: pointer;
}

.menu-item:hover {
    background-color: #151742 !important;
    transform: translateX(3px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Opción seleccionada/activa */
.menu-item.active,
.menu-item.bg-\[#0d0f3d\] {
    background-color: #0d0f3d !important;
    border-left: 4px solid #ffffff;
    font-weight: 600;
    box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.5);
}

/* Estilos para el menú Inicio (que no tiene clase menu-item) */
nav > a:not(.menu-item) {
    transition: all 0.2s ease-out;
    cursor: pointer;
}

nav > a:not(.menu-item):hover {
    background-color: #151742 !important;
    transform: translateX(3px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

nav > a:not(.menu-item).active,
nav > a:not(.menu-item).bg-\[#0d0f3d\] {
    background-color: #0d0f3d !important;
    border-left: 4px solid #ffffff;
    font-weight: 600;
    box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.5);
}

/* Preloader personalizado */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Custom Scrollbar para el sidebar */
aside::-webkit-scrollbar {
    width: 6px;
}

aside::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

aside::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

aside::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Para Firefox */
aside {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

