/* CSS separado para SweetAlert exámenes */
.sweet-bar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 9999;
}
#btnNuevoExamen {
    padding: 10px 16px;
    border-radius: 30px;
    border: none;
    background-color: #1E8449;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.sweet-contenido {
    margin-top: 70px;
}
.sweet-titulo {
    color: #2c3e50;
    margin-bottom: 5px;
}
.sweet-estudiante {
    color: #3498db;
    margin-top: 0;
}
.sweet-total {
    margin-bottom: 15px;
}
.examenes-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.examen-item {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}
.examen-info {
   
  
    align-items: center;
}
.examen-nota {
    text-align: right;
    font-size: 1.2em;
}
.sweet-cerrar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 40px;
    border-radius: 0 20px 20px 0;
    border: none;
    background-color: #e74c3c;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 9999;
    cursor: pointer;
}
.btnEditarExamen {
    margin-top: 5px;
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background-color: #f1c40f;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.btnEditarExamen:hover {
    background-color: #d4ac0d;
}
