/* Wallet Balance Styles */
.big-balance {
    font-size: 2em;
    font-weight: bold;
}

/* User Profile Styles */
.user-profile {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
    background-color: #007BBB;
    color: white;
}

.username {
    font-size: 16px;
    white-space: nowrap;
    font-weight: bold;
    text-transform: uppercase;
    color: #007BBB;
}

@media (max-width: 480px) {
    .profile-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .username {
        font-size: 14px;
    }
}

/* Payment Form Styles */
#add-money-button {
    background-color: #007BBB;
    color: white;
    border: 1px solid #ccc;
    border-radius: 15px;
}

#money-modal {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#money-modal div {
    background: white;
    padding: 20px;
    border-radius: 5px;
}

/* Profile Form Styles */
.user-profile-container {
    padding: 20px;
    border-radius: 5px;
}

#user-profile-form input {
    border: 2px solid #f0f0f0;
}

#progress-bar {
    display: none;
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
}

#progress {
    width: 0%;
    height: 20px;
    background-color: #4caf50;
}

/* Password Reset Form Styles */
#pw-reset-form {
    max-width: 400px;
    margin: auto;
}

#pw-reset-form input {
    border: 2px solid #f0f0f0;
}

#pw_reset_submit {
    background-color: #007BBB;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
}

#pw_reset_message {
    margin-top: 10px;
}