/**
 * ============================================================================
 * ECLIPCSS ISOTYPE & SACRED GEOMETRY STUDIO — ESTILOS DEL PANEL ADMIN
 * Control Maestro de Isotipos, Guías Áureas y Validación Vectorial
 * ============================================================================
 */

.isotype-studio-container {
  background: rgba(10, 15, 29, 0.7);
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.isotype-studio-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ccff00, #32ff7e, #00e5ff);
}

.isotype-shapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.isotype-shape-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.isotype-shape-card:hover {
  background: rgba(204, 255, 0, 0.06);
  border-color: rgba(204, 255, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204, 255, 0, 0.15);
}

.isotype-shape-card.is-active {
  background: rgba(204, 255, 0, 0.1);
  border-color: #ccff00;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.25);
}

.isotype-preview-viewport {
  background: #080c16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .isotype-preview-viewport {
    grid-template-columns: 1fr;
  }
}

.isotype-canvas-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  min-height: 260px;
  position: relative;
}

.isotype-scales-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  width: 100%;
}
