/* =========================
   BASE
========================= */

body {
    background: #0b0b0c;
    color: #e5e7eb;
    font-family: Inter, system-ui, sans-serif;
}

/* =========================
   SECCIONES
========================= */

.page-section {
    margin-top: 10px;
}

.card-title {
    margin-bottom: 15px;
}

.card-title h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.card-title p {
    color: #9ca3af;
    font-size: 13px;
}

/* =========================
   CARD
========================= */

.table-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 16px;
}

/* =========================
   TABLE
========================= */

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table thead {
    background: #0f172a;
}

.custom-table th {
    text-align: left;
    padding: 12px;
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-table td {
    padding: 12px;
    border-top: 1px solid #1f2937;
    color: #e5e7eb;
}

.custom-table tr:hover {
    background: #1f2937;
    transition: 0.2s ease;
}

/* =========================
   BADGES (ESTADOS)
========================= */

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid;
    display: inline-block;
}

/* aprobado */
.badge-approved {
    background: #0b0b0b;
    color: #22c55e;
    border-color: #22c55e;
}

/* reembolsado */
.badge-refunded {
    background: #0b0b0b;
    color: #ef4444;
    border-color: #ef4444;
}

/* =========================
   PAGINACIÓN
========================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.pagination button {
    background: #1f2937;
    color: white;
    border: 1px solid #374151;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.pagination button:hover {
    background: #374151;
}