/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
    width: 240px;
    height: 100vh;
    background: #111827;
    position: fixed;
    padding: 20px 15px;
}

.sidebar h4 {
    color: white;
    font-weight: 600;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.menu:hover {
    background: #1f2937;
    color: white;
}

.menu.active {
    background: #2563eb;
    color: white;
}

/* =========================
   CONTENT
========================= */
.content {
    margin-left: 240px; /* space sidebar */
    padding: 30px 40px;
    width: calc(100% - 240px);
}

/* =========================
   HEADER
========================= */
h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* =========================
   CARD
========================= */
.card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* =========================
   TABLE
========================= */
.table {
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: #111827;
    color: white;
}

.table tbody tr {
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.table tbody tr:hover {
    background: #f9fafb;
}

/* =========================
   BADGE
========================= */
.badge {
    background: #2563eb !important;
    border-radius: 20px;
    font-size: 12px;
    padding: 5px 12px;
}

/* =========================
   BUTTON
========================= */
.btn-success {
    background: #16a34a;
    border-radius: 8px;
    padding: 5px 10px;
    border: none;
}

.btn-success:hover {
    background: #15803d;
}

/* =========================
   LOGIN PAGE
========================= */

body.login-page {
    background: linear-gradient(135deg, #4e73df, #224abe);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.card-login {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-login {
    background: #2563eb;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    padding: 10px;
    transition: 0.3s;
}

.btn-login:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



/* =========================
   PAYMENT BOX
========================= */

.payment-box {
    background: #f8fafc;
    border-radius: 12px;
}

.payment-item {
    padding: 8px 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid #eee;
    font-size: 14px;
}