@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --azul-oscuro: #14416c;
  --naranja: #ea732c;
  --naranja-oscuro: #d96625;
  --gris-claro: #f7f7f7;
  --gris-texto: #6c757d;
  --blanco: #ffffff;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--azul-oscuro);
  background-color: var(--gris-claro);
}

.estado-badge {
  background-color: rgba(25, 135, 84, 0.15);
  color: #198754;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.badge-prealerta,
.badge-recibido,
.badge-transito,
.badge-destino,
.badge-entregado,
.badge-anulado,
.badge-pago-pendiente,
.badge-pago-pagado,
.badge-casillero {
  display: inline-block;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.badge-prealerta {
  background-color: rgba(108, 117, 125, 0.15) !important;
  color: #6c757d !important;
}

.badge-recibido {
  background-color: rgba(13, 202, 240, 0.18) !important;
  color: #0ea5c6 !important;
}

.badge-transito {
  background-color: rgba(234, 115, 44, 0.15) !important;
  color: #ea732c !important;
}

.badge-destino {
  background-color: rgba(40, 167, 69, 0.15) !important;
  color: #28a745 !important;
}

.badge-entregado {
  background-color: rgba(25, 135, 84, 0.15) !important;
  color: #198754 !important;
}

.badge-anulado {
  background-color: rgba(220, 53, 69, 0.15) !important;
  color: #dc3545 !important;
}

.badge-pago-pendiente {
  background-color: rgba(234, 115, 44, 0.15) !important;
  color: #ea732c !important;
}

.badge-pago-pagado {
  background-color: rgba(40, 167, 69, 0.15) !important;
  color: #28a745 !important;
}

.badge-casillero {
  background-color: #14416c;
  color: #ffffff;
  border: 1px solid #14416c;
}

.site-footer {
  background-color: var(--azul-oscuro);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 1rem;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  line-height: 1.35;
}

.site-footer-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.site-footer-link:hover,
.site-footer-link:focus {
  color: #ffd8bf;
  text-decoration: underline;
}

.site-footer-separator {
  opacity: 0.55;
  user-select: none;
}

.site-footer-copy {
  font-weight: 600;
}

.site-footer-admin .site-footer-inner {
  justify-content: center;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 0.65rem 0.8rem;
  }

  .site-footer-inner {
    gap: 0.45rem;
    font-size: 0.8rem;
  }
}
