/* ============================================
   14. ONGLETS
   ============================================ */
.tabs {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background-color: var(--gray-50);
  padding: 4px;
  margin-bottom: 24px;
}

.tab {
  flex: 1;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab:hover {
  color: var(--gray-700);
}

.tab.active {
  background-color: white;
  color: var(--gray-900);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tab-fade-in 0.25s ease;
}

@keyframes tab-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

