/* Estilo do fundo do popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Estilo do popup */
.popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    font-family: "Open Sans", sans-serif;
}

/* Título do popup */
.popup h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Botões */
.popup-buttons {
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: space-between;
    width: 75%;
}

.popup-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.popup-buttons .confirm {
    background: #e74c3c;
    color: #fff;
    width: 40%;
}

.popup-buttons .cancel {
    background: #3498db;
    color: #fff;
    width: 40%;
}


