/*!
 * De Korne — 3D viewer styles
 *
 * Generated by tools/build-theme-assets.py from the WPCode snippets that used
 * to be injected inline on every page. Do not edit by hand: edit the source
 * files under tools/wpcode-export/ and re-run the build, or move the rule into
 * a hand-maintained partial.
 */

.dk-viewer-block {
    background: #F5F5F5;
    border-radius: 16px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    border: 1px solid #E0E0E0;
  }
  .dk-viewer-header {
    padding: 1.25rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
  .dk-viewer-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
  }
  .dk-viewer-stage {
    margin: 1rem 1.5rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    height: 420px;
    position: relative;
    overflow: hidden;
  }
  .dk-viewer-canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
  }
  .dk-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    font-size: 11px;
    color: #BDBDBD;
    font-family: Arial, sans-serif;
    pointer-events: none;
  }
  .dk-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    z-index: 20;
    font-family: Arial, sans-serif;
    gap: 12px;
  }
  .dk-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #F0F0F0;
    border-top-color: #E8231A;
    border-radius: 50%;
    animation: dk-spin 0.8s linear infinite;
  }
  @keyframes dk-spin { to { transform: rotate(360deg); } }
  .dk-loading-text {
    font-size: 13px;
    color: #999;
    font-weight: 600;
  }
