﻿.confirmYN_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.confirmYN_box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
    width: 500px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    font-family: Arial;
}

.confirmYN_icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.confirmYN_message {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.5;
}

.confirmYN_buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.confirmYN_btn {
    padding: 8px 25px;
    background: #b23b4a;
    color: #fff;
    /*border: 2px solid #000;*/
    border-radius: 5px;
    cursor: pointer;
    opacity : .9
}

.confirmYN_btn:focus, .confirmYN_btn:active {
    outline: 2px solid #0d6efd !important;
    opacity : 1
}
