.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-dialog {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    max-width: 500px;
}

.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f29831;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.popup-title {
    margin: 0;
    color: #fff;
}
.popup-close {
    position: absolute;
    right: 0px;
    top: 2px;
    background: none;
    cursor: pointer;
    padding: 0 15px;
}
.popup-close::before {
    content: '×';
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.popup-body {
    margin: 15px 0;
}
.popup-body .label {
    font-size: 16px;
    font-weight: bold;
}   

.popup-footer {
    display: flex;
    justify-content: space-between;
}

.btn-popup-close {
    background: none;
    border: none;
    cursor: pointer;
}
.btn-bottom-close {
    border: 1px solid #ccc;
}