/* Navigation Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.left-section {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info {
  font-size: 0.9rem;
  color: #666;
}

.logout-btn {
  padding: 6px 12px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.logout-btn:hover {
  background-color: #d32f2f;
}

.tab-button {
  background-color: #e0e0e0;
  color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-button:hover {
  background-color: #f0f0f0;
}

/* Ensure content doesn't go under the fixed navbar */
body {
  padding-top: 70px !important;
}
