.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    width: 400px;
    height:650px;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index:9001;
}
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: normal;
    background: none;
    border: none;
}

.popup-section {
    margin-bottom: 20px;
}

.popup-section h3 {
    margin-bottom: 10px;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.info-label {
    font-weight: 500;
    color: #555;
}

.info-value {
    color: #222;
}

.popup-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.withdraw-btn {
    background-color: #ff5b5b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.change-password-btn {
    margin-top: 8px;
    display: inline-block;
    color: #337ab7;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.password-popup .popup {
    width: 350px;
    height:370px;
}

.popup-field {
    margin-bottom: 15px;
}

.popup-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.popup-field input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-confirm {
    background-color: #4CAF50;
    color: white;
}

.btn-cancel {
    background-color: #ccc;
    color: black;
}