body {
    background-color: #ebebeb;
}
/* =========================
   CARD STYLES
========================= */
.card-modern {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.dashboard-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 28px;
    opacity: 0.85;
}

.stat-number {
    font-size: 26px;
    font-weight: 700;
}

/* =========================
   TYPOGRAPHY
========================= */
.page-title,
.section-title {
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    margin-bottom: 6px;
}

.info-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
}

.info-value {
    font-weight: 600;
    margin-bottom: 16px;
    word-break: break-word;
}

.form-hint {
    font-size: 13px;
    color: #858796;
}

/* =========================
   TABLE STYLES
========================= */
.table thead {
    background-color: #f8f9fc;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.table tbody tr {
    transition: all 0.15s ease-in-out;
}

.table tbody tr:hover {
    background-color: #f4f6fb;
}

/* =========================
   BADGE STYLES
========================= */
.badge-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Group badges with same styling */
.badge-active,
.badge-success,
.badge-paid {
    background-color: #e6f7f0;
    color: #1cc88a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-inactive,
.badge-failed {
    background-color: #fdecea;
    color: #e74a3b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-pending {
    background-color: #fff8e1;
    color: #f6c23e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-expired {
    background-color: #eceff1;
    color: #6c757d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* =========================
   BUTTON STYLES
========================= */
.btn-soft {
    background-color: #f1f3f9;
    border-radius: 8px;
    font-weight: 600;
}

.btn-soft:hover {
    background-color: #e2e6f2;
}

/* Button variations */
.btn-soft-primary {
    background-color: #eef2ff;
    color: #4e73df;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 18px;
}

.btn-soft-primary:hover {
    background-color: #dbe4ff;
    color: #224abe;
}

.btn-soft-secondary {
    background-color: #f1f3f9;
    color: #6c757d;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
}

.btn-soft-secondary:hover {
    background-color: #e2e6f2;
}

.btn-soft-warning {
    background-color: #fff4e5;
    color: #f6a609;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 18px;
}

.btn-soft-warning:hover {
    background-color: #ffe8cc;
}

.btn-soft-danger {
    background-color: #fdecea;
    color: #e74a3b;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 18px;
}

.btn-soft-danger:hover {
    background-color: #fbd5d3;
}

.copy-btn {
    font-size: 12px;
    padding: 4px 10px;
}

/* =========================
   FORMS
========================= */
.form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #e3e6f0;
}

.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.15rem rgba(78, 115, 223, 0.15);
}

.form-switch .form-check-input {
    width: 42px;
    height: 22px;
    cursor: pointer;
}

/* =========================
   API KEY DISPLAY
========================= */
.api-key {
    font-family: monospace;
    background: #f1f3f9;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-block;
}

/* =========================
   GRADIENT BACKGROUNDS
========================= */
.bg-gradient-primary {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: white;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #1cc88a, #13855c);
    color: white;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f6c23e, #dda20a);
    color: white;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #e74a3b, #be2617);
    color: white;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #343a40, #121416);
    color: white;
}

/* =========================
   META BOX
========================= */
.meta-box {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    font-size: 13px;
    overflow-x: auto;
}
