/* Estilos para o Popup de Confirmação */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.popup-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background-color: #333;
    color: #eee;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.popup-buttons button {
    background-color: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.popup-buttons button:hover {
    background-color: #00a0b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.popup-buttons button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Estilo para o botão "Não" (pode ser diferente) */
#confirm-stop-no {
    background-color: #666;
}

#confirm-stop-no:hover {
    background-color: #777;
}
