/* Estilos para el fondo del diálogo */
#dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Estilos para el cuadro de diálogo */
#dialog-confirm {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

/* Estilos para el texto del cuadro de diálogo */
#dialog-confirm p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Estilos para los botones */
#dialog-confirm button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 10px;
    font-size: 14px;
}

#dialog-confirm button:hover {
    background-color: #45a049;
}

#dialog-confirm button:last-child {
    background-color: #f44336;
}

#dialog-confirm button:last-child:hover {
    background-color: #e41d1d;
}
