/* sfc-style:/rails/app/javascript/ar_editor/components/SceneViewer.vue?type=style&index=0 */
.scene-viewer[data-v-4352b0dd] {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.scene-container[data-v-4352b0dd] {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.loading-overlay[data-v-4352b0dd] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.loading-spinner[data-v-4352b0dd] {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: spin-4352b0dd 0.8s linear infinite;
}
@keyframes spin-4352b0dd {
  to {
    transform: rotate(360deg);
  }
}
.loading-text[data-v-4352b0dd] {
  font-size: 14px;
  color: #374151;
}
.scene-controls[data-v-4352b0dd] {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.render-all-switch[data-v-4352b0dd] {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.render-all-switch input[data-v-4352b0dd] {
  display: none;
}
.switch-slider[data-v-4352b0dd] {
  position: relative;
  width: 36px;
  height: 20px;
  background: #d1d5db;
  border-radius: 10px;
  transition: background 0.2s;
}
.switch-slider[data-v-4352b0dd]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.render-all-switch input:checked + .switch-slider[data-v-4352b0dd] {
  background: #4f46e5;
}
.render-all-switch input:checked + .switch-slider[data-v-4352b0dd]::after {
  transform: translateX(16px);
}
.switch-label[data-v-4352b0dd] {
  font-size: 13px;
  color: #374151;
  user-select: none;
}
.control-btn[data-v-4352b0dd] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: #374151;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.control-btn[data-v-4352b0dd]:hover {
  background: #f9fafb;
  color: #111827;
}
.scene-legend[data-v-4352b0dd] {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #374151;
}
.legend-item[data-v-4352b0dd] {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-color[data-v-4352b0dd] {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* sfc-style:/rails/app/javascript/ar_editor/components/ModelPreview.vue?type=style&index=0 */
.model-preview[data-v-5e7efbdb] {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.model-preview canvas[data-v-5e7efbdb] {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.loading-overlay[data-v-5e7efbdb],
.error-overlay[data-v-5e7efbdb] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 250, 251, 0.8);
  z-index: 1;
}
.mini-spinner[data-v-5e7efbdb] {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: spin-5e7efbdb 0.8s linear infinite;
}
@keyframes spin-5e7efbdb {
  to {
    transform: rotate(360deg);
  }
}
.error-overlay[data-v-5e7efbdb] {
  color: #9ca3af;
}

/* sfc-style:/rails/app/javascript/ar_editor/components/ObjectPanel.vue?type=style&index=0 */
.object-panel[data-v-f39e7a1f] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.panel-header[data-v-f39e7a1f] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}
.panel-title[data-v-f39e7a1f] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.close-btn[data-v-f39e7a1f] {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #9ca3af;
  border-radius: 4px;
  transition: all 0.2s;
}
.close-btn[data-v-f39e7a1f]:hover {
  background: #f3f4f6;
  color: #374151;
}
.panel-section[data-v-f39e7a1f] {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.section-title[data-v-f39e7a1f] {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-row[data-v-f39e7a1f] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.info-label[data-v-f39e7a1f] {
  font-size: 13px;
  color: #6b7280;
}
.info-value[data-v-f39e7a1f] {
  font-size: 13px;
  color: #111827;
  font-weight: 500;
}
.type-badge[data-v-f39e7a1f] {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: white;
}
.position-grid[data-v-f39e7a1f] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.position-item[data-v-f39e7a1f] {
  background: #f9fafb;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
}
.pos-label[data-v-f39e7a1f] {
  display: block;
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.pos-value[data-v-f39e7a1f] {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  font-family: monospace;
}
.asset-preview[data-v-f39e7a1f] {
  margin-top: 12px;
}
.preview-container[data-v-f39e7a1f] {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.preview-image[data-v-f39e7a1f] {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}
.preview-video[data-v-f39e7a1f] {
  max-width: 100%;
  max-height: 200px;
}
.preview-placeholder[data-v-f39e7a1f] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.preview-model[data-v-f39e7a1f] {
  width: 100%;
  height: 180px;
}
.panel-actions[data-v-f39e7a1f] {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.action-btn[data-v-f39e7a1f] {
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.action-btn-primary[data-v-f39e7a1f] {
  background: #4f46e5;
  color: white;
  border: none;
}
.action-btn-primary[data-v-f39e7a1f]:hover:not(:disabled) {
  background: #4338ca;
}
.action-btn-primary[data-v-f39e7a1f]:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}
.empty-state[data-v-f39e7a1f] {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.font-mono[data-v-f39e7a1f] {
  font-family: monospace;
}
.text-xs[data-v-f39e7a1f] {
  font-size: 12px;
}

/* sfc-style:/rails/app/javascript/ar_editor/components/AssetSelector.vue?type=style&index=0 */
.asset-selector-overlay[data-v-80d36f16] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.asset-selector-modal[data-v-80d36f16] {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.modal-header[data-v-80d36f16] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.modal-header h3[data-v-80d36f16] {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.close-btn[data-v-80d36f16] {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #9ca3af;
  border-radius: 4px;
}
.close-btn[data-v-80d36f16]:hover {
  background: #f3f4f6;
  color: #374151;
}
.modal-filter[data-v-80d36f16] {
  padding: 12px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.filter-row[data-v-80d36f16] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box[data-v-80d36f16] {
  position: relative;
  flex: 1;
  max-width: 280px;
}
.search-icon[data-v-80d36f16] {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9ca3af;
  pointer-events: none;
}
.search-input[data-v-80d36f16] {
  width: 100%;
  padding: 8px 32px 8px 34px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input[data-v-80d36f16]:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}
.search-input[data-v-80d36f16]::placeholder {
  color: #9ca3af;
}
.search-clear[data-v-80d36f16] {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #9ca3af;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-clear[data-v-80d36f16]:hover {
  background: #f3f4f6;
  color: #374151;
}
.reset-btn[data-v-80d36f16] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.reset-btn[data-v-80d36f16]:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #9ca3af;
}
.reset-btn[data-v-80d36f16]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.search-result-hint[data-v-80d36f16] {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}
.filter-select[data-v-80d36f16] {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  cursor: pointer;
}
.type-restriction[data-v-80d36f16] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.restriction-label[data-v-80d36f16] {
  font-size: 14px;
  color: #374151;
}
.restriction-badge[data-v-80d36f16] {
  background: #4f46e5;
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
}
.restriction-hint[data-v-80d36f16] {
  font-size: 12px;
  color: #9ca3af;
}
.modal-content[data-v-80d36f16] {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  min-height: 300px;
}
.loading-state[data-v-80d36f16],
.error-state[data-v-80d36f16],
.empty-state[data-v-80d36f16] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #6b7280;
}
.loading-spinner[data-v-80d36f16] {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: spin-80d36f16 0.8s linear infinite;
  margin-bottom: 12px;
}
@keyframes spin-80d36f16 {
  to {
    transform: rotate(360deg);
  }
}
.retry-btn[data-v-80d36f16] {
  margin-top: 12px;
  padding: 8px 16px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.retry-btn[data-v-80d36f16]:hover {
  background: #4338ca;
}
.asset-grid[data-v-80d36f16] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.asset-item[data-v-80d36f16] {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.asset-item[data-v-80d36f16]:hover {
  border-color: #9ca3af;
}
.asset-item.selected[data-v-80d36f16] {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}
.asset-preview[data-v-80d36f16] {
  aspect-ratio: 1;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preview-image[data-v-80d36f16],
.preview-video[data-v-80d36f16] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-placeholder[data-v-80d36f16] {
  color: #9ca3af;
}
.asset-info[data-v-80d36f16] {
  padding: 8px;
  background: white;
}
.asset-name[data-v-80d36f16] {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.asset-type[data-v-80d36f16] {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}
.selected-indicator[data-v-80d36f16] {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.modal-footer[data-v-80d36f16] {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
}
.btn[data-v-80d36f16] {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary[data-v-80d36f16] {
  background: white;
  border: 1px solid #d1d5db;
  color: #374151;
}
.btn-secondary[data-v-80d36f16]:hover {
  background: #f9fafb;
}
.btn-primary[data-v-80d36f16] {
  background: #4f46e5;
  border: none;
  color: white;
}
.btn-primary[data-v-80d36f16]:hover:not(:disabled) {
  background: #4338ca;
}
.btn-primary[data-v-80d36f16]:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}
.upload-section[data-v-80d36f16] {
  padding: 0 20px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.upload-dropzone[data-v-80d36f16] {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafafa;
}
.upload-dropzone[data-v-80d36f16]:hover {
  border-color: #9ca3af;
  background: #f5f5f5;
}
.upload-dropzone.drag-over[data-v-80d36f16] {
  border-color: #4f46e5;
  background: #eef2ff;
}
.upload-dropzone.uploading[data-v-80d36f16] {
  pointer-events: none;
  opacity: 0.7;
}
.upload-placeholder[data-v-80d36f16] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.upload-icon[data-v-80d36f16] {
  width: 40px;
  height: 40px;
  color: #9ca3af;
}
.upload-text[data-v-80d36f16] {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.upload-hint[data-v-80d36f16] {
  font-size: 12px;
  color: #9ca3af;
}
.upload-progress[data-v-80d36f16] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #4f46e5;
}
.pagination[data-v-80d36f16] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.pagination-btn[data-v-80d36f16] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.pagination-btn[data-v-80d36f16]:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #9ca3af;
}
.pagination-btn[data-v-80d36f16]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-info[data-v-80d36f16] {
  font-size: 14px;
  color: #6b7280;
  min-width: 60px;
  text-align: center;
}

/* sfc-style:/rails/app/javascript/ar_editor/App.vue?type=style&index=0 */
.ar-editor[data-v-395e23ca] {
  padding: 0;
}
.page-header[data-v-395e23ca] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.page-title[data-v-395e23ca] {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}
.page-subtitle[data-v-395e23ca] {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}
.scene-selector[data-v-395e23ca] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selector-label[data-v-395e23ca] {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.selector-select[data-v-395e23ca] {
  padding: 8px 32px 8px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #111827;
  cursor: pointer;
  min-width: 200px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 20px;
}
.selector-select[data-v-395e23ca]:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.loading-state[data-v-395e23ca],
.error-state[data-v-395e23ca],
.empty-state-full[data-v-395e23ca] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #6b7280;
  gap: 16px;
}
.loading-spinner-large[data-v-395e23ca] {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: spin-395e23ca 0.8s linear infinite;
}
@keyframes spin-395e23ca {
  to {
    transform: rotate(360deg);
  }
}
.error-state[data-v-395e23ca] {
  color: #dc2626;
}
.error-icon[data-v-395e23ca] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fef2f2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
.retry-btn[data-v-395e23ca] {
  padding: 8px 16px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.retry-btn[data-v-395e23ca]:hover {
  background: #4338ca;
}
.empty-icon[data-v-395e23ca] {
  width: 64px;
  height: 64px;
  color: #d1d5db;
}
.main-content[data-v-395e23ca] {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-bottom: 24px;
}
.scene-section[data-v-395e23ca] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.section-header[data-v-395e23ca] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.section-title[data-v-395e23ca] {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.section-header-right[data-v-395e23ca] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.object-count[data-v-395e23ca] {
  font-size: 13px;
  color: #6b7280;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 12px;
}
.reload-btn[data-v-395e23ca] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.reload-btn[data-v-395e23ca]:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #374151;
}
.reload-btn[data-v-395e23ca]:active {
  background: #e5e7eb;
}
.scene-wrapper[data-v-395e23ca] {
  height: 500px;
}
.objects-list-section[data-v-395e23ca] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-height: 540px;
  overflow-y: auto;
}
.objects-list[data-v-395e23ca] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel-section[data-v-395e23ca] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 24px;
}
.object-card[data-v-395e23ca] {
  background: #f9fafb;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.object-card[data-v-395e23ca]:hover {
  background: #f3f4f6;
  border-color: #e5e7eb;
}
.object-card-selected[data-v-395e23ca] {
  background: #eef2ff;
  border-color: #4f46e5;
}
.object-card-header[data-v-395e23ca] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.object-type-dot[data-v-395e23ca] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.object-name[data-v-395e23ca] {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.object-card-details[data-v-395e23ca] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: #6b7280;
}
.object-id[data-v-395e23ca] {
  font-family: monospace;
}
.object-position[data-v-395e23ca] {
  font-family: monospace;
}
.mb-3[data-v-395e23ca] {
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .page-header[data-v-395e23ca] {
    flex-direction: column;
    gap: 16px;
  }
  .main-content[data-v-395e23ca] {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=/assets/ar_editor/main-73d37fdf.css.map */
