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

.confirmation-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 300px;
    text-align: center;
    border-radius: 8px;
}
.confirmation-modal-content button {
    margin: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
}
#confirmYes { background-color: #d9534f; color: white; }
#confirmCancel { background-color: #6c757d; color: white; }