.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.confirm-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    min-width: 280px;
    max-width: 90%;
    box-shadow: 0 0 10px #000;
    text-align: center;
}

.confirm-message {
    font-size: 16px;
    margin-bottom: 20px;
}

.confirm-buttons button {
    margin: 5px;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.btn-yes {
    background: #007bff;
    color: #fff;
}

.btn-no {
    background: #e7e7e7;
}
