/* --- TABS --- */
.tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-light);
}
.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px; /* prekreje border */
  transition: all 0.2s;
  font-family: inherit;
}
.tab-btn:hover {
  color: var(--teal-primary);
}
.tab-btn.active {
  color: var(--teal-primary);
  border-bottom-color: var(--teal-primary);
}
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}
.tab-content.active {
  display: block;
}

/* --- ADMIN FEED --- */
.feed-card {
  background: #f9fafb;
  border-left: 4px solid var(--teal-primary);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.feed-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.feed-client-email {
  font-weight: 700;
  color: var(--dark-bg);
}
.feed-note {
  font-style: italic;
  color: #4b5563;
  margin-top: 1rem;
  padding: 0.5rem;
  background: white;
  border-radius: 4px;
}
.feed-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  background: white;
}
.feed-table th, .feed-table td {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}
.feed-table th {
  background: #f3f4f6;
  font-weight: 600;
}
