/* =====================
   GLOBAL
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f9;
    color: #1f2937;
}

/* =====================
   APP WRAPPER
===================== */
.app {
    max-width: 420px;
    margin: auto;
    background: #f4f6f9;
    min-height: 100vh;
}

/* =====================
   TOP HEADER (same as user dashboard)
===================== */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #0f172a;
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.top-header small {
    font-size: 12px;
    color: #cbd5f5;
}

.top-header h4 {
    font-size: 18px;
    margin-top: 4px;
}

.top-header i {
    font-size: 22px;
}

/* =====================
   SECTION
===================== */
.transaction-section {
    padding: 20px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.section-title h6 {
    font-size: 15px;
    font-weight: 600;
}

.section-title small {
    font-size: 12px;
    color: #64748b;
}

/* =====================
   USER LIST CARD
===================== */
.transaction-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.transaction-item i {
    font-size: 20px;
    color: #2563eb;
    margin-right: 12px;
}

.transaction-item .details {
    flex: 1;
}

.transaction-item strong {
    font-size: 14px;
    display: block;
}

.transaction-item small {
    font-size: 12px;
    color: #6b7280;
}

/* =====================
   VIEW BUTTON
===================== */
.transaction-item .btn {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 10px;
    background: #2563eb;
    border: none;
}

.transaction-item .btn:hover {
    background: #1d4ed8;
}