/* CSS for Erik's 3D Model Viewer */
.eriks-3d-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 20px 0;
}

.eriks-3d-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#heading {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 100;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.border {
    height: 3px;
    width: 100px;
    background-color: #4CAF50;
    margin-top: 10px;
}

#progress-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 100;
}

#heading h1, #heading h4 {
    margin: 5px 0;
}

/* Make sure the canvas fills the container */
canvas {
    display: block;
}