.sv-canvas-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
}

.sv-canvas-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid rgb(192, 192, 192);
    padding: 10px; */
    position: relative;
}

.sv-canvas {
    width: 100%;
    position: relative;
    cursor: move;
}

.sv-canvas-split-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
}
.sv-canvas-split-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  /* border: 1px solid rgb(192, 192, 192);
  padding: 10px; */
  position: relative;
}

.sv-split-canvas {
  flex:1;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: move;
  display: block;
}

.sv-splitter {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(0,0,0,0.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
  cursor: ew-resize;
  z-index: 9999;
  transform: translateX(-1.5px);
  touch-action: none;
}

.sv-splitter-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: rgba(0,0,0,0.65);
  display: grid;
  place-items: center;
}

.sv-splitter-handle::before {
  content: "";
  width: 2px;
  height: 18px;
  background: rgba(255,255,255,0.85);
  box-shadow: -4px 0 0 rgba(255,255,255,0.6), 4px 0 0 rgba(255,255,255,0.6);
}

.sv-canvas-label {
    margin-top: 10px;
    font-size: 1.05em;
    color: #333;
}

.sv-button-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sv-control-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Menlo', 'Lucida Console', 'Monaco', 'Consolas', monospace;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sv-control-button:hover {
    background-color: rgba(200, 200, 200, 0.8);
}

.sv-control-button:active {
    background-color: rgba(150, 150, 150, 0.8);
}

@keyframes breathing {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.4;
    }
}

.sv-interactive-cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathing 2s ease-in-out infinite;
}

.sv-interactive-cursor::before {
    content: '✥';
    font-size: 24px;
    color: #333;
}

.sv-interactive-cursor.hidden {
    opacity: 0;
    animation: none;
    transition: opacity 0.3s ease;
}

.ply-selector {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;      
    gap: 0.5rem;     
}

.ply-selector button {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.model-grid {
  display: flex;
  gap: 1.25rem;   
  flex-wrap: wrap;
}

.model-grid button {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: #f9f9f9;
  padding: 0.75rem;    
  border-radius: 12px;   
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 170px;
}

.model-grid button:hover {
  transform: scale(1.05);
}

.model-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;

  aspect-ratio: 16 / 9; 
}

.model-grid span {
  margin-top: 0.6rem;
  font-size: 1.1rem; 
  font-weight: 600;
  color: #333;
}