/****************cofirmbox*****************/
.custom-confirm-box {
    display: none; /* ซ่อนเมื่อเริ่มต้น */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.confirm-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
}

#confirmOk, #confirmCancel {
    margin: 10px;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#confirmOk {
    background-color: #4CAF50;
    color: white;
}

#confirmCancel {
    background-color: #f44336;
    color: white;
}