@charset "UTF-8";
.admin-panel {
  background: #f8f9fa;
  color: #374151;
  padding: 2rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
}
.admin-panel .dashboard-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.admin-panel .dashboard-header .status-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
.admin-panel .dashboard-header .status-card .status-item {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #4b5563;
}
.admin-panel .dashboard-header .status-card .status-item .label {
  font-weight: 500;
  margin-right: 0.5rem;
}
.admin-panel .payments-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
.admin-panel .payments-section .section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.admin-panel .payments-section .section-header h2 {
  color: #1f2937;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
}
.admin-panel .payments-section .table-responsive {
  overflow-x: auto;
}
.admin-panel .payments-section .table-responsive .wp-list-table {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.admin-panel .payments-section .table-responsive .wp-list-table thead th {
  background: #f1f5f9 !important;
  color: #1f2937 !important;
  padding: 12px 15px !important;
  border-bottom: 1px solid #e5e7eb !important;
  font-weight: 600;
}
.admin-panel .payments-section .table-responsive .wp-list-table tbody td {
  padding: 12px 15px !important;
  border-color: #e5e7eb !important;
  color: #4b5563;
}
.admin-panel .payments-section .table-responsive .wp-list-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.admin-panel .payments-section .table-responsive .wp-list-table tbody tr:hover {
  background: #f1f5f9 !important;
}

/* Definición de los badges según el estado */
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.status-badge.active {
  background: #22c55e;
  color: #fff;
}
.status-badge.pending {
  background: #f97316;
  color: #fff;
}
.status-badge.expired {
  background: #ef4444;
  color: #fff;
}

/* Estilos del botón de pago */
.payment-button {
  display: inline-block;
  margin-top: 0 !important;
  padding: 8px 20px;
  background: #3b82f6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border: 1px solid #2563eb;
}
.payment-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}
.payment-button:active {
  transform: translateY(0);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .admin-panel {
    padding: 1rem;
  }
  .admin-panel .dashboard-header {
    flex-direction: column;
    gap: 1rem;
  }
  .admin-panel .dashboard-header .status-card {
    padding: 1rem;
  }
}
/* Clase utilitaria para fuentes monospace */
.monospace {
  font-family: monospace;
}/*# sourceMappingURL=style.css.map */