/* Position the model selector container at the top-right corner */
#model-selector {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 1000;
    /* Ensure the container is above the A-Frame canvas */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Add space between buttons */
}

/* Style individual buttons */
#model-selector button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.1s;
}

#model-selector button:hover {
    background-color: #0056b3;
    /* Darker shade of blue */
}

#model-selector button:active {
    transform: scale(0.95);
    /* Slightly reduce size when clicked */
}

#model-selector button:focus {
    outline: none;
}


#ui-controls {
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 1000;
    /* Ensure the container is above the A-Frame canvas */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Add space between buttons */
}

#ui-controls button {
    padding: 5px 10px;
    background-color: #f37e44;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.1s;
}