/* MEJORAS VISUALES PARA EL PORTAL LMS - EYIRO */

/* 1. Fondo y Espaciado General */
body, .page-container {
    background-color: #f1f5f9 !important; /* Gris azulado moderno */
}

/* 2. Tarjetas de Cursos (Más modernas y limpias) */
.course-card {
    border: none !important;
    background: white !important;
    border-radius: 16px !important; /* Bordes más redondeados */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Título de la tarjeta */
.course-card .card-title {
    font-weight: 700 !important;
    color: #0f172a; /* Azul oscuro */
    font-size: 1.1rem;
}

/* 3. Menú Lateral (Sidebar) */
.sidebar-item a {
    color: #64748b;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 4px;
    padding: 10px 15px;
}

.sidebar-item.active a {
    background-color: #e0f2fe !important; /* Azul muy suave */
    color: #0284c7 !important; /* Azul Eyiro fuerte */
    font-weight: 700;
}

.sidebar-item a:hover {
    background-color: #f8fafc;
    color: #0284c7;
}

/* 4. Títulos de Página */
.page-head h1 {
    color: #2563eb !important; /* Azul Eyiro */
    font-weight: 800 !important;
}

/* 5. Icono de Fuego (Racha/Streak) */
.streak-counter {
    background-color: #FFD300 !important; /* Amarillo Eyiro */
    color: #000 !important;
    font-weight: 800;
    border-radius: 50px;
    padding: 4px 12px;
}