/* INVOXA: Document editor positions and tabs */

/* ===== POSITIONEN ITEMS ===== */
.position-item {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #edf2f7;
  transition: all 0.2s;
}

.position-item:hover {
  background: white;
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.05);
}

/* ===== TABS ===== */
.tab-button {
  transition: all 0.2s;
  position: relative;
}

.tab-button.active {
  color: var(--primary);
  font-weight: 600;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

