.model-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

#model-viewer {
    width: 100%;
    height: 500px;
    border: 2px solid #333;
    border-radius: 8px;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    position: relative;
    overflow: hidden;
}

.model-caption {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #model-viewer {
        height: 300px;
    }
}