// Importar Bootstrap (Ya lo teníamos)
@import 'bootstrap/scss/bootstrap';

// Estilos personalizados para el Dashboard
body {
    font-size: 0.9rem;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

// Barra Lateral (Sidebar)
.sidebar {
    min-height: 100vh;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    z-index: 100;
    
    .nav-link {
        color: #333;
        padding: 12px 20px;
        font-weight: 500;
        
        &:hover {
            background-color: #e9ecef;
            color: #0d6efd; // Azul Bootstrap
        }
        
        &.active {
            background-color: #e7f1ff;
            color: #0d6efd;
            border-right: 3px solid #0d6efd;
        }
        
        i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
    }
}

// Contenido Principal
.main-content {
    width: 100%;
    padding: 20px;
}

// Tarjetas Dashboard
.card-dashboard {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    transition: transform 0.2s;
    
    &:hover {
        transform: translateY(-5px);
    }
}