/* emu2-frontend.css - estilos básicos para EMU2 */

.emu2-container {
  background: #ffffff;
  color: #111827;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}
.titulo-instructores-listado {
  font-size: 1.25rem;
  margin: 0 0 0.25rem 0;
}
.bajada-tabla-instructores-listado {
  margin: 0 0 12px 0;
}

/* botones */
.boton2-menu-cargar-archivos {
  padding: 0.45rem 0.7rem;
  border-radius: 0.35rem;
}

/* notifications */
.emu2-notifications {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.emu2-note {
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.22s ease;
  max-width: 360px;
}
.emu2-note.show {
  opacity: 1;
  transform: translateY(0);
}
.emu2-note.error {
  background: #dc2626;
}
.emu2-note.success {
  background: #16a34a;
}

/* table tweaks */
.table.table-striped tbody tr td {
  vertical-align: middle;
}
#emu2-table .btn {
  font-size: 0.85rem;
  padding: 0.28rem 0.5rem;
}
.emu2-container.contenedor-instructor-lista-carga.card.p-3 {
  border: none !important;
}
.titulo-instructores-listado {
  font-size: 1.5rem;
  margin: 0 0 0.25rem 0;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  color: #001931;
}
p.bajada-tabla-instructores-listado.text-muted {
  color: #4d5e6f !important;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
}

#emu2-table thead th,
#emu-instructor-table thead th {
  background: #f0f0f5;
  text-align: left;
  padding: 0.75rem;
  border-bottom: none;
  color: #4d5e6f !important;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
}

#emu2-table thead th,
#emu-instructor-table thead th {
  background: #f0f0f5;
  text-align: left;
  padding: 0.75rem;
  border-bottom: none;
  color: #4d5e6f !important;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
}

#emu2-table tbody td,
#emu-instructor-table tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid #cecfd1;
  vertical-align: middle;
  color: #243348;
  font-size: 14px;
}

#emu2-table tbody tr:hover,
#emu-instructor-table tbody tr:hover {
  background: #f9f9f9;
}

/* Thead padding custom */
#emu2-table thead {
  padding: 17px 20px 22px 26px;
}

/* Ajustes de padding por columna en thead */
#emu2-table thead tr th:first-child,
#emu-instructor-table thead tr th:first-child {
  padding: 17px 20px 22px 26px !important;
  border-radius: 8px 0 0 0;
}
#emu2-table thead tr th:not(:first-child):not(:last-child),
#emu-instructor-table thead tr th:not(:first-child):not(:last-child) {
  padding: 17px 0 22px 0 !important;
}
#emu2-table thead tr th:last-child,
#emu-instructor-table thead tr th:last-child {
  padding: 17px 0 22px 0 !important;
  border-radius: 0 8px 0 0;
}

#emu2-table tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid #cecfd1;
  vertical-align: middle;
  color: #243348;
  font-size: 14px;
}
div#emu2-confirm-delete-modal.show {
    opacity: 1;
}

button.boton2-eliminar-instructor {
    font-family: Quicksand, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #385bce;
    padding: 11px 20px;
    border: 1px solid #385bce;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}
.btn-crear-instructor{
  
    font-family: Quicksand, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #385bce;
    padding: 11px 20px;
    border: 1px solid #385bce;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}
button#emu2-open-create {
    margin-top: 33px;
    font-family: Quicksand;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    border-radius: 45px;
    height: 40px;
    width: 227px;
    border: none;
    background-color: #385bce;
}
/* responsive helpers */
@media (max-width: 576px) {
  #emu2-create-instructor-form .form-control {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .emu2-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
