/* QR Wallet Container */
.wallet-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px;
    font-family: 'Poppins-Regular'; 
    background-color: #f4f7f6; 
    min-height: 100vh;
}

/* Base Card Styling */
.wallet-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

/* Card Header */
.wallet-card-header {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Status Badge */
.wallet-badge-active {
    font-size: 11px;
    background: #e6fffa;
    color: #047857;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid #047857;
    letter-spacing: 0.5px;
}

/* QR Code Section */
.wallet-qr-section {
    padding: 30px 20px;
    text-align: center;
}

.wallet-qr-box {
    display: flex;
    justify-content: center;
    margin: 0 auto 15px auto;
    padding: 10px;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 8px;
    width: max-content;
}

.wallet-id-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #222;
}

.wallet-help-text {
    color: #888;
    font-size: 13px;
    margin-top: 5px;
}

/* Details Section (List of Rows) */
.wallet-details-container {
    padding: 10px 20px 20px 20px;
}

.wallet-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}

.wallet-detail-row:last-child {
    border-bottom: none;
}

.wallet-detail-label {
    color: #666;
}

.wallet-detail-value {
    font-weight: 600;
    color: #333;
}

/* Emphasized Balance Row */
.wallet-balance-row {
    padding-bottom: 15px;
    margin-bottom: 5px;
    align-items: flex-end;
}

.wallet-balance-value {
    color: #28a745;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

/* Error Card Styling */
.wallet-error-card {
    text-align: center;
    padding: 40px 20px;
    border-top: 4px solid #dc3545;
}