.address-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.address-modal-overlay .border-bt {
    border-top: 1px solid #ccc;
    width: 100%;
    position: relative;
    bottom: -3px;
    z-index: 2;
}
.address-modal-footer {
    padding: 12px 16px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e7e7e7;
    color: #888888;
    height: 51px;
    position: relative;
    top: -48px;
}

.address-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    position: relative;
    bottom: -1px;
}

.address-modal-container {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 453px;
}
.close-button {
    font-size: 28px;
    margin-top: -4px;
}