.revisor-reporte-examen {
    max-width: 500px;
    margin: 20px auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.reporte-examen-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.reporte-examen-header i {
    color: #1e88e5;
    font-size: 24px;
}

.reporte-examen-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.reporte-examen-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.reporte-examen-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.reporte-examen-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.reporte-examen-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 26px;
}

.reporte-examen-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.reporte-examen-toggle input:checked + .reporte-examen-toggle-slider {
    background-color: #1e88e5;
}

.reporte-examen-toggle input:checked + .reporte-examen-toggle-slider:before {
    transform: translateX(24px);
}

.reporte-examen-btn-generar {
    background: #1e88e5;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
}

.reporte-examen-btn-generar:hover {
    background: #1565c0;
}

.reporte-examen-btn-generar:disabled {
    background: #90caf9;
    cursor: not-allowed;
}

.reporte-examen-mensaje {
    margin-top: 16px;
    font-size: 14px;
    text-align: left;
}

.reporte-examen-mensaje.exito {
    color: #2e7d32;
    text-align: center;
}

.reporte-examen-mensaje.error {
    color: #c62828;
}

.reporte-examen-mensaje ul {
    padding-left: 20px;
    margin-top: 8px;
}

.reporte-examen-mensaje li {
    margin-bottom: 4px;
}
