body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.ar-ui-overlay {
    position: fixed;
    bottom: 0;
    top: 80%;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Permite que los eventos de clic pasen a la escena AR */
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
}

.ar-ui-overlay h1 {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 2em;
    text-align: center;
    pointer-events: auto; /* Permite la interacción con el título si es necesario */
    margin-bottom: 20px;
}

.navigation-buttons {
    pointer-events: auto; /* Permite la interacción con los botones */
    display: flex;
    gap: 10px;
}

.navigation-buttons button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.navigation-buttons button:hover {
    background-color: #0056b3;
}
