.confirm-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none !important;
    justify-content: center;
    align-items: center;
    z-index: 4090;
    margin: 0 !important;
}

.confirm-box.show {
    display: flex !important;
    margin: 0 !important;
}

.confirm-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px black;
}

.confirm-content button {
    margin: 5px;
    padding: 8px 15px;
    cursor: pointer;
}

.observation {
    font-size: 13px;
    text-align: center;
    border-top: 1px solid #dadada;
    margin-top: 15px;
}