/* ========================================
   BLOQUES DE EVALUACIÓN - DISEÑO LIMPIO
   ======================================== */

.bloque-card-simple {
    background: #fff;
    border: 1px solid #e3e6f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}

.bloque-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 2rem 0 rgba(58, 59, 69, 0.25);
    border-color: #4e73df;
}

.bloque-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e3e6f0;
    background: #fff;
}

.bloque-title {
    font-size: 1rem;
    font-weight: 600;
    color: #4e73df;
    margin: 0;
    line-height: 1.4;
}

.bloque-card-header .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    border-radius: 4px;
}

.bloque-actions-top {
    display: flex;
    gap: 0.5rem;
}

.bloque-actions-top .btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.bloque-actions-top .btn:hover {
    background-color: rgba(0,0,0,0.05);
}

.bloque-actions-top .btn i {
    font-size: 1.1rem;
}

.bloque-card-body {
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.bloque-card-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #858796;
}

.form-check-input.toggle-estado-bloque {
    cursor: pointer;
    width: 2.75rem;
    height: 1.5rem;
    border-radius: 2rem;
}

.form-check-input.toggle-estado-bloque:checked {
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.form-check-input.toggle-estado-bloque:focus {
    box-shadow: 0 0 0 0.2rem rgba(28, 200, 138, 0.25);
}

.estado-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    cursor: pointer;
    color: #1cc88a;
}

/* Grid spacing mejorado */
.row.g-3 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bloque-card-simple {
        margin-bottom: 1rem;
    }
    
    .bloque-card-header,
    .bloque-card-body {
        padding: 1rem 1.25rem;
    }
}
