﻿.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10900;
    display: none;
    justify-content: center;
    align-items: center;
}

.confirm-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    max-width: 90%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Poppins','Montserrat', sans-serif;
}

.confirm-message {
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
}

.confirm-buttons {
    display: flex;
    justify-content: space-around;
}

    .confirm-buttons button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-family: 'Poppins','Montserrat', sans-serif;
    }

.confirm-yes {
    background-color: #0395ba;
    color: white;
    width: 130px;
}

.confirm-no {
    color: #333333;
    background-color: #e7e7e7;
    border-color: #cccccc;
    background-image: linear-gradient(#e7e7e7, #e7e7e7 60%, #e7e7e7);
    border-bottom: 1px solid #e7e7e7;
    width: 130px;
}

.confirm-buttons button:hover {
    opacity: 0.8;
}
