html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}



x3d {
    display: block;
    width: 100%;
    height: 100%;
}

.model-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    border: 1px solid #d3d3d3;
    padding: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-size: 0.85rem;
    font-family: 'Roboto', sans-serif;
    background-color: #ccc;
}

.model-info .small-format {
    display: none;
}

.model-info ul {
    list-style: none;
    padding: 0;
}

.model-info a {
    color: #175e80;
    text-decoration: none;
}

@media (max-width: 600px) {
    .model-info {
        width: 150px;
        height: 25px;
        overflow: hidden;
        padding: 2px;
        font-size: 0.7rem;
        background-color: #ccc;
    }

    .model-info .large-format {
        display: none;
    }

    .model-info .small-format {
        display: block;
    }
}

.playback-controls {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    z-index: 1000;
    user-select: none;
}

.playback-controls svg {
    width: 50px;
    height: 50px;
    user-select: none;
}

.playback-controls .playback-buttons{
    user-select: none;
}

#progress-bar-element {
    width: 90%;
    height: 10px;
    margin-right: 5%;
    margin-left: 5%;
    user-select: none;
}


#progress-rect {
    transition: width 0.5s ease;
}

