body {
    background: #020617;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* FULL WIDTH */
.wallet-container {
    padding: 15px;
}

/* BALANCE */
.balance-card {
    background: linear-gradient(135deg, #6d28d9, #4f46e5);
    border-radius: 20px;
    padding: 30px;
}

.balance-top {
    display: flex;
    justify-content: space-between;
}

.balance-amount {
    font-size: 35px;
    font-weight: bold;
    margin-top: 10px;
}

/* BUTTONS */
.actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-action {
    flex: 1;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.add-money {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.send-money {
    background: #1877F2;
    color: #fff;
}

/* INFO */
.info-box {
    background: #111827;
    border-radius: 14px;
    padding: 15px;
    margin-top: 20px;
}

/* 🔥 WALLET SUMMARY (MATCH THEME) */
.summary-card {
    background: #111827;
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(34,197,94,0.15);
}

/* TITLE */
.summary-card h4 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* ROW */
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 16px;
}

.summary-row:last-child {
    border-bottom: none;
}

/* VALUE COLORS */
.green { color: #22c55e; }
.yellow { color: #facc15; }
.red { color: #f87171; }

/* VALUE STYLE */
.summary-row span:last-child {
    font-weight: bold;
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 480px) {
    .balance-amount {
        font-size: 24px;
    }
}

/* OVERLAY */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 999;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #111;
    padding: 20px;
    border-radius: 10px;

    width: 320px;
    text-align: center;

    display: none;
    z-index: 1000;
}

/* INPUT */
.modal input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;

    border-radius: 6px;
    border: none;

    background: #111;
    color: #fff;
}

/* BUTTONS */
.modal-actions {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.modal-actions button {
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.modal-actions button:first-child {
    background: #00ff88;
    color: #000;
}

.modal-actions button:last-child {
    background: #444;
    color: #fff;
}