/* Classifications Tab Styling */
.classifications-tabs .nav-link {
  cursor: pointer;
  transition: all 0.3s ease;
  color: #495057;
}

.classifications-tabs .nav-link:hover {
  color: #0066cc !important;
}

.classifications-tabs .nav-link.active {
  color: #0066cc !important;
  border-bottom-color: #0066cc !important;
}

.tab-content {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tree hierarchy indentation */
.tree-item {
  padding-left: 1.5rem;
}

.tree-item-level-1 {
  padding-left: 2.75rem;
}

.tree-item-level-2 {
  padding-left: 4rem;
}

.tree-item-level-3 {
  padding-left: 5.25rem;
}

/* Filter styling */
.filters-section {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.filters-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  font-size: 0.95rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.4rem;
}

.search-input {
  font-size: 0.875rem;
}

/* Status badges */
.status-active {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.status-inactive {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
