#confirmation-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

#confirmation-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90vw;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    display: none;
}

#confirmation-popup h2 {
    margin-top: 0;
}

#confirmation-popup p {
    margin-bottom: 20px;
}

#confirmation-popup label {
    display: block;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#confirmation-popup-ok {
    background: #007cba;
    color: white;
}

#confirmation-popup-back {
    background: #dc3545;
    color: white;
}
