.correccion-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(13, 34, 56, 0.55);
  padding: 18px;
}

.correccion-card {
  width: min(560px, 96vw);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 22px 45px rgba(13, 34, 56, 0.24);
}

.correccion-card h3 {
  margin: 0 0 14px;
  color: #0d2238;
}

.correccion-card label {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  color: #0d2238;
}

.correccion-card input,
.correccion-card textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 5px;
}

.historial-correcciones {
  margin-top: 18px;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.historial-correcciones h3 {
  margin-top: 0;
  color: #d81b60;
}

.historial-correcciones table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.historial-correcciones th,
.historial-correcciones td {
  border-bottom: 1px solid #edf2f7;
  padding: 7px;
  text-align: left;
  vertical-align: top;
}

.solicitudes-correccion-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.solicitudes-correccion-tabs .btn {
  margin: 0;
}

.solicitudes-correccion-tabs .activo {
  background: var(--axiona-navy);
}

.solicitud-estado {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
}

.solicitud-estado.pendiente {
  background: #d97706;
}

.solicitud-estado.aplicada {
  background: #15803d;
}

.solicitud-estado.rechazada {
  background: #b91c1c;
}

.btn-historico {
  width: 100%;
  margin: 0;
  background: #fff;
  color: #0d2238;
  border: 1px solid #dbe2ea;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 900;
}

.btn-historico:hover,
.btn-historico.activo {
  background: linear-gradient(90deg, #e41462, #b30858);
  color: #fff;
  transform: none;
}