.custom-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-dialog {
    background-color: #fff;
    max-width: 400px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1060;
}

.custom-modal-header {
    background-color: #f2f2f2;
    padding: 10px;
    position: relative;
}

.custom-modal-title {
    margin: 0;
}

.custom-modal-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.custom-modal-body {
    padding: 20px;
}

.custom-modal-footer {
    padding: 10px;
    text-align: right;
    background-color: #f2f2f2;
}

.custom-modal-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    margin-left: 5px;
    cursor: pointer;
}

.custom-modal-cancel-btn {
    background-color: #e0e0e0;
}

.custom-modal-confirm-btn {
    background-color: #2196f3;
    color: #fff;
}