﻿/*#modal_confirmMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#confirmBox {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;
    text-align: center;
}

    #confirmBox button {
        margin: 10px;
        padding: 8px 16px;
        font-size: 16px;
        cursor: pointer;
    }

    #confirmBox .yes {
        background-color: #28a745;
        color: white;
        border: none;
        border-radius: 5px;
    }

    #confirmBox .no {
        background-color: #dc3545;
        color: white;
        border: none;
        border-radius: 5px;
    }
*/