/**
 * @file
 * Styles for Model Viewer Formatter.
 */

.model-viewer-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

model-viewer {
  display: block;
}

.model-viewer-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f5f5f5;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: #4285f4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.model-viewer-loading p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Responsive adjustments. */
@media (max-width: 768px) {
  .model-viewer-wrapper {
    border-radius: 4px;
  }
}

