/* ==============================================
   evaluaciones.css — Módulo Evaluaciones 360°
   ============================================== */

/* ── Título de página con acento naranja ── */
.ev-mod .ev-page-title {
    font-weight: 700;
    color: #2a324b;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    position: relative;
}
.ev-mod .ev-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, #FF6A1A, #FFB74D);
    border-radius: 2px;
}

/* ============================================
   TARJETAS DE ESTADÍSTICAS
   ============================================ */
.ev-card-stat {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    padding: 1.15rem 0.8rem;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
}
.ev-card-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #dee2e6;
}
.ev-card-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

/* Variantes de color (barra superior) */
.ev-card-stat.ev-stat-blue::before   { background: linear-gradient(90deg, #1481f8, #64b5f6); }
.ev-card-stat.ev-stat-green::before  { background: linear-gradient(90deg, #23b644, #66bb6a); }
.ev-card-stat.ev-stat-red::before    { background: linear-gradient(90deg, #d62537, #ef5350); }
.ev-card-stat.ev-stat-orange::before { background: linear-gradient(90deg, #FF6A1A, #FFB74D); }

/* Icono circular */
.ev-card-stat .ev-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1rem;
}
.ev-stat-blue  .ev-stat-icon { background: #e3f2fd; color: #1481f8; }
.ev-stat-green .ev-stat-icon { background: #e8f5e9; color: #23b644; }
.ev-stat-red   .ev-stat-icon { background: #fce4ec; color: #d62537; }
.ev-stat-orange .ev-stat-icon { background: #fff3e0; color: #FF6A1A; }

/* Valor numérico grande */
.ev-card-stat .ev-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: #2a324b;
}
.ev-stat-green  .ev-stat-value { color: #23b644; }
.ev-stat-red    .ev-stat-value { color: #d62537; }
.ev-stat-orange .ev-stat-value { color: #FF6A1A; }

/* Etiqueta inferior */
.ev-card-stat .ev-stat-label {
    font-size: 0.76rem;
    color: #767b91;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ============================================
   GRÁFICO DOUGHNUT
   ============================================ */
.ev-card-doughnut {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    padding: 1rem 0.9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ev-card-doughnut h6 {
    font-weight: 600;
    color: #4f546c;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.ev-card-doughnut canvas {
    max-width: 140px;
}

/* ============================================
   TABLAS
   ============================================ */
.ev-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 0;
}
.ev-table thead {
    background: linear-gradient(135deg, #FF6A1A 0%, #FF8A50 100%);
}
.ev-table thead th {
    color: #fff;
    font-weight: 600;
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.72rem 0.85rem;
    border: none;
    white-space: nowrap;
}
.ev-table tbody tr {
    transition: background 0.15s ease;
    border-bottom: 1px solid #eef1f6;
}
.ev-table tbody tr:last-child { border-bottom: none; }
.ev-table tbody tr:hover { background: #f9fbff; }
.ev-table tbody td {
    padding: 0.65rem 0.85rem;
    font-size: 0.89rem;
    color: #2a324b;
    vertical-align: middle;
}

/* ============================================
   MENÚ INDEX
   ============================================ */
.ev-mod .menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}
.ev-mod .menu .list-group-item {
    border: none;
    border-bottom: 1px solid #eef1f6;
    padding: 1.1rem 1.25rem;
    transition: background 0.22s ease, transform 0.18s ease;
    text-decoration: none;
}
.ev-mod .menu .list-group-item:last-child { border-bottom: none; }
.ev-mod .menu .list-group-item:hover {
    background: linear-gradient(135deg, #fff8f3, #fff);
    transform: translateX(5px);
}
.ev-mod .menu .list-group-item h5 {
    font-weight: 600;
    color: #2a324b;
    margin-bottom: 0.06rem;
    font-size: 1.05rem;
}
.ev-mod .menu .list-group-item p {
    color: #767b91;
    font-size: 0.86rem;
    margin-bottom: 0;
}
/* Fondo suave para el icono del menú */
.ev-mod .menu .ev-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff3e0, #ffe0cc);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Chevron se mueve al hover */
.ev-mod .menu .ev-chevron {
    transition: transform 0.22s ease, color 0.22s ease;
    color: #767b91;
}
.ev-mod .menu .list-group-item:hover .ev-chevron {
    transform: translateX(4px);
    color: #FF6A1A;
}

/* ============================================
   LIST GROUPS (mis_evaluaciones / avance)
   ============================================ */
.ev-list {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.ev-list .list-group-item {
    border: none;
    border-bottom: 1px solid #eef1f6;
    padding: 1rem 1.1rem;
    transition: background 0.15s ease;
    background: #fff;
}
.ev-list .list-group-item:last-child { border-bottom: none; }
.ev-list .list-group-item:hover { background: #f9fbff; }
.ev-list .list-group-item strong { color: #2a324b; }

/* ============================================
   BADGES
   ============================================ */
.ev-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.2px;
    display: inline-block;
}
.ev-badge-pendiente  { background: #fff0c2; color: #a68b00; }
.ev-badge-completada { background: #e8f5e9; color: #1d6d21; }
.ev-badge-publicado  { background: #e8f5e9; color: #1d6d21; }
.ev-badge-cerrado    { background: #f0f0f0; color: #757575; }
.ev-badge-borrador   { background: #fff9c4; color: #f57f17; }

/* ============================================
   PROGRESS BAR (avance_agregado)
   ============================================ */
.ev-progress {
    height: 8px;
    border-radius: 4px;
    background: #eef1f6;
    margin-top: 0.65rem;
    overflow: hidden;
}
.ev-progress-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #FF6A1A, #FFB74D);
    transition: width 0.5s ease;
}

/* ============================================
   ACCORDION (ver_respuestas_ciclo)
   ============================================ */
.ev-accordion .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.ev-accordion .card-header {
    padding: 0;
    background: #fff;
    border-bottom: none;
}
.ev-accordion .card-header button {
    width: 100%;
    padding: 0.82rem 1rem;
    font-size: 0.9rem;
    color: #2a324b !important;
    background: none;
    border-bottom: 1px solid #eef1f6;
    transition: background 0.18s ease;
    text-decoration: none !important;
}
.ev-accordion .card-header button:not(.collapsed) {
    background: #fff7f0;
    border-bottom-color: #FF6A1A;
}
.ev-accordion .card-body {
    padding: 0.95rem;
}
/* Tabla dentro del accordion: estilo sutil */
.ev-accordion .card-body table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.ev-accordion .card-body table thead {
    background: #f4f6fb;
}
.ev-accordion .card-body table thead th {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f546c;
    padding: 0.58rem 0.72rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ev-accordion .card-body table td {
    padding: 0.52rem 0.72rem;
    font-size: 0.88rem;
    color: #2a324b;
    border-bottom: 1px solid #eef1f6;
}
.ev-accordion .card-body table tr:last-child td { border-bottom: none; }

/* ============================================
   CARD DE FORM (publicar_ciclo)
   ============================================ */
.ev-form-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}
.ev-form-card .card-header {
    background: linear-gradient(135deg, #FF6A1A, #FF8A50);
    color: #fff;
    padding: 0.72rem 1.15rem;
    border: none;
    font-weight: 600;
}
.ev-form-card .card-body {
    padding: 1.3rem;
}
.ev-form-card .form-label {
    font-weight: 600;
    font-size: 0.78rem;
    color: #767b91;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
}
.ev-form-card .form-control {
    border-radius: 8px;
    border-color: #e1e5ee;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ev-form-card .form-control:focus {
    border-color: #FF6A1A;
    box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.18);
    outline: none;
}
/* Tabla de pares personalizados */
.ev-form-card .table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.ev-form-card .table thead th {
    background: #f4f6fb;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f546c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
    padding: 0.6rem 0.75rem;
}
.ev-form-card .table td {
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
    color: #2a324b;
    border-bottom: 1px solid #eef1f6;
}

/* ============================================
   PÁGINA Y CARD DE SURVEY (contestar evaluación)
   ============================================ */
.ev-survey-page {
    padding-bottom: 100px;
}

.ev-survey-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.ev-survey-header {
    background: linear-gradient(135deg, #FF6A1A 0%, #FF8A50 100%);
    padding: 2rem 2.5rem;
    color: #fff;
}

.ev-survey-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ev-survey-icon {
    width: 70px !important;
    height: 70px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    animation: pulse-icon 2s ease-in-out infinite !important;
    min-width: 70px;
    min-height: 70px;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ev-survey-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    font-size: 1.8rem;
    line-height: 1.2;
}

.ev-survey-subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-size: 1.05rem;
}

.ev-survey-subtitle strong {
    color: #fff;
    font-weight: 600;
}

.ev-survey-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.ev-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.2s;
}

.ev-meta-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.ev-meta-item i {
    font-size: 1rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ev-survey-body {
    padding: 2.5rem 2.5rem 3rem;
    background: #f8f9fa;
}

/* ============================================
   FORMULARIO DE SURVEY
   ============================================ */
.ev-survey-form {
    max-width: 1000px;
    margin: 0 auto;
}

/* Cada pregunta o grupo */
.ev-survey-form .form-group,
.ev-survey-form .formbuilder-text,
.ev-survey-form .formbuilder-textarea,
.ev-survey-form .formbuilder-number,
.ev-survey-form .formbuilder-select,
.ev-survey-form .formbuilder-radio-group,
.ev-survey-form .formbuilder-checkbox-group,
.ev-survey-form .formbuilder-date,
.ev-survey-form .formbuilder-header,
.ev-survey-form .formbuilder-paragraph {
    margin-bottom: 2.5rem !important;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #FF6A1A;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ev-survey-form .form-group:hover,
.ev-survey-form .formbuilder-text:hover,
.ev-survey-form .formbuilder-textarea:hover,
.ev-survey-form .formbuilder-number:hover,
.ev-survey-form .formbuilder-select:hover,
.ev-survey-form .formbuilder-radio-group:hover,
.ev-survey-form .formbuilder-checkbox-group:hover,
.ev-survey-form .formbuilder-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Títulos de sección */
.ev-survey-form .formbuilder-header {
    border-left-color: #2a324b;
    background: linear-gradient(135deg, #fff8f3, #fff);
}

.ev-survey-form .formbuilder-header h1,
.ev-survey-form .formbuilder-header h2,
.ev-survey-form .formbuilder-header h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: #FF6A1A;
    font-weight: 700;
}

/* Párrafos descriptivos */
.ev-survey-form .formbuilder-paragraph {
    border-left-color: #767b91;
    background: #f4f6fb;
}

.ev-survey-form .formbuilder-paragraph p {
    text-align: center;
    margin-bottom: 0;
    color: #4f546c;
    font-size: 1rem;
    line-height: 1.6;
}

/* Etiquetas de preguntas */
.ev-survey-form .field-label,
.ev-survey-form label {
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
    color: #2a324b;
    line-height: 1.4;
}

/* Asterisco requerido */
.ev-survey-form .required-asterisk {
    color: #d62537;
    margin-left: 4px;
}

/* Inputs de texto */
.ev-survey-form input[type="text"],
.ev-survey-form input[type="number"],
.ev-survey-form input[type="date"],
.ev-survey-form select,
.ev-survey-form textarea {
    font-size: 1.05rem;
    margin: 0 auto;
    display: block;
    max-width: 100%;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ev-survey-form input:focus,
.ev-survey-form select:focus,
.ev-survey-form textarea:focus {
    border-color: #FF6A1A;
    box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.15);
    outline: none;
}

/* Grupos de radio (horizontal) */
.ev-survey-form .radio-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ev-survey-form .radio-group label {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    width: auto;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    white-space: nowrap;
    background: #f4f6fb;
    border: 2px solid transparent;
}

.ev-survey-form .radio-group label:hover {
    background: #fff;
    border-color: #FF6A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 106, 26, 0.15);
}

.ev-survey-form .radio-group input[type="radio"]:checked + label,
.ev-survey-form .radio-group label:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #FF6A1A, #FF8A50);
    color: #fff;
    border-color: #FF6A1A;
    font-weight: 600;
}

/* Grupos de checkbox (vertical) */
.ev-survey-form .checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.ev-survey-form .checkbox-group label {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
    max-width: 600px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    background: #f4f6fb;
    border: 2px solid transparent;
}

.ev-survey-form .checkbox-group label:hover {
    background: #fff;
    border-color: #FF6A1A;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 106, 26, 0.15);
}

.ev-survey-form .checkbox-group input[type="checkbox"]:checked + label,
.ev-survey-form .checkbox-group label:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, rgba(255, 106, 26, 0.1), rgba(255, 138, 80, 0.1));
    border-color: #FF6A1A;
    color: #2a324b;
    font-weight: 600;
}

/* Campos inválidos */
.ev-survey-form .is-invalid {
    border-color: #d62537 !important;
    box-shadow: 0 0 0 3px rgba(214, 37, 55, 0.15) !important;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Botón de envío */
.ev-btn-submit {
    background: linear-gradient(135deg, #FF6A1A, #FF8A50);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    margin-top: 2rem;
    display: block;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 106, 26, 0.3);
}

.ev-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 106, 26, 0.4);
    background: linear-gradient(135deg, #e66018, #ff7a40);
    color: #fff;
}

.ev-btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 106, 26, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .ev-survey-header {
        padding: 1.5rem 1.25rem;
    }

    .ev-survey-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ev-survey-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .ev-survey-title {
        font-size: 1.4rem;
    }

    .ev-survey-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ev-survey-body {
        padding: 1.5rem 1rem 2rem;
    }

    .ev-survey-form .form-group,
    .ev-survey-form .formbuilder-text,
    .ev-survey-form .formbuilder-textarea,
    .ev-survey-form .formbuilder-number,
    .ev-survey-form .formbuilder-select,
    .ev-survey-form .formbuilder-radio-group,
    .ev-survey-form .formbuilder-checkbox-group,
    .ev-survey-form .formbuilder-date,
    .ev-survey-form .formbuilder-header,
    .ev-survey-form .formbuilder-paragraph {
        padding: 1.25rem;
    }

    .ev-survey-form .radio-group {
        flex-direction: column;
        align-items: stretch;
    }

    .ev-survey-form .radio-group label {
        width: 100%;
        text-align: left;
    }
}

/* ============================================
   CARD DE CREAR EVALUACIÓN
   ============================================ */
.ev-crear-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.ev-crear-card .card-header {
    background: linear-gradient(135deg, #fff8f3, #fff3ec);
    border-bottom: 2px solid #ffe0cc;
    padding: 0.85rem 1.15rem;
}
.ev-crear-card .card-header h5 {
    font-weight: 700;
    color: #2a324b;
    margin-bottom: 0;
}

/* ============================================
   REPORTE HEADER
   ============================================ */
.ev-reporte-header {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.ev-reporte-header .card-header {
    background: linear-gradient(135deg, #fff8f3, #fff);
    border-bottom: 2px solid #ffe0cc;
    padding: 1rem 1.2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ev-reporte-header .card-header h5 {
    font-weight: 700;
    color: #2a324b;
    margin-bottom: 0.1rem;
}

/* ============================================
   CHART CARDS (bar charts en reporte)
   ============================================ */
.ev-chart-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 1.15rem;
}
.ev-chart-card h6 {
    font-weight: 600;
    color: #4f546c;
    font-size: 0.87rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #eef1f6;
}

/* ============================================
   GRID WRAPPER (gestion AG Grid)
   ============================================ */
.ev-grid-wrapper {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ============================================
   BOTÓN EXPORTAR EXCEL
   ============================================ */
.ev-btn-export {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
    transition: transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.ev-btn-export:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.35);
    text-decoration: none;
}

/* ============================================
   ALERTAS CON BORDE IZQUIERDO
   ============================================ */
.ev-mod .alert {
    border-radius: 10px;
    border: 1px solid transparent;
    border-left-width: 4px;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
}
.ev-mod .alert.alert-success { border-left-color: #23b644; background: #f0faf2; }
.ev-mod .alert.alert-warning { border-left-color: #f57f17; background: #fffde7; }
.ev-mod .alert.alert-danger  { border-left-color: #d62537; background: #fff5f5; }
.ev-mod .alert.alert-info    { border-left-color: #1481f8; background: #f0f8ff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
    .ev-card-stat {
        padding: 0.85rem 0.6rem;
    }
    .ev-card-stat .ev-stat-value {
        font-size: 1.5rem;
    }
    .ev-card-stat .ev-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    .ev-card-doughnut canvas {
        max-width: 140px;
    }
}

/* ============================================
   CARDS DE REPORTES (hub)
   ============================================ */
.ev-report-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    height: 100%;
}

.ev-report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(255, 106, 26, 0.2);
}

.ev-report-card .ev-report-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff3e0, #ffe0cc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #FF6A1A;
    transition: transform 0.22s ease;
}

.ev-report-card:hover .ev-report-icon {
    transform: scale(1.1);
}

.ev-report-card h5 {
    font-weight: 700;
    color: #2a324b;
    margin-bottom: 0.5rem;
}

.ev-report-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
}
