/**
 * Estilos para el módulo de Entregas
 * Sistema de Gestión Educativa v4.4.2
 */

/* ═══════════════════════════════════════════════════════════════
   INFORMACIÓN DE ACTIVIDAD
   ═══════════════════════════════════════════════════════════════ */

.actividad-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.actividad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.actividad-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.actividad-details p {
    margin: 8px 0;
    color: #666;
}

.actividad-details strong {
    color: #333;
    font-weight: 600;
}

.actividad-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* ═══════════════════════════════════════════════════════════════
   TABLA DE ENTREGAS
   ═══════════════════════════════════════════════════════════════ */

#tablaEntregas {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#tablaEntregas thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

#tablaEntregas thead th {
    padding: 15px;
    font-weight: 600;
    text-align: left;
    border: none;
}

#tablaEntregas tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

#tablaEntregas tbody tr:hover {
    background: #f8f9fa;
}

#tablaEntregas tbody tr:last-child td {
    border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   DETALLE DE ENTREGA (MODAL)
   ═══════════════════════════════════════════════════════════════ */

.entrega-detalle p {
    margin: 10px 0;
    color: #666;
}

.entrega-detalle strong {
    color: #333;
    font-weight: 600;
}

.respuestas-list {
    margin-top: 15px;
}

.respuesta-item {
    background: #f8f9fa;
    border-left: 4px solid #ccc;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 4px;
}

.respuesta-item.correcta {
    background: #d4edda;
    border-left-color: #28a745;
}

.respuesta-item.incorrecta {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.respuesta-item p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   BADGES DE ESTADO
   ═══════════════════════════════════════════════════════════════ */

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: #28a745;
    color: #fff;
}

.badge-warning {
    background: #ffc107;
    color: #000;
}

.badge-info {
    background: #17a2b8;
    color: #fff;
}

.badge-danger {
    background: #dc3545;
    color: #fff;
}

.badge-secondary {
    background: #6c757d;
    color: #fff;
}

.badge-purple {
    background: #764ba2;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   MODALES
   ═══════════════════════════════════════════════════════════════ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
}

.modal-dialog {
    max-width: 600px;
    margin: 50px auto;
    position: relative;
}

.modal-dialog.modal-lg {
    max-width: 900px;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   FORMULARIOS
   ═══════════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* ═══════════════════════════════════════════════════════════════
   ESTADÍSTICAS
   ═══════════════════════════════════════════════════════════════ */

#entregasStats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

#entregasStats .stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

#entregasStats .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

#entregasStats .stat-icon.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#entregasStats .stat-icon.yellow {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#entregasStats .stat-icon.green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#entregasStats .stat-icon.purple {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

#entregasStats .stat-details h3 {
    margin: 0 0 5px 0;
    font-size: 2rem;
    color: #333;
}

#entregasStats .stat-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .actividad-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .modal-dialog {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    #tablaEntregas {
        font-size: 0.85rem;
    }
    
    #tablaEntregas thead th,
    #tablaEntregas tbody td {
        padding: 8px;
    }
    
    #entregasStats .stats-grid {
        grid-template-columns: 1fr;
    }
}
