/* header.css */
header {
  padding: 0 20px;
  background: #333;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%; 
}

.tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  width: 100%; /* Ensure the buttons take the full available width */
  justify-content: center; /* Center buttons horizontally */
  text-align: center; /* Center text within buttons */
}

/* Style for each tab button */
.tab-buttons button {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

/* Hover effect for tab buttons */
.tab-buttons button:hover {
  background-color: #34495e;
  transform: scale(1.1);
}

/* Active tab button */
.tab-buttons button.active {
  background-color: #e74c3c;
  color: white;
  font-weight: bold;
}

/* Style for tab button focus state (optional) */
.tab-buttons button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.7);
}

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
}

.header-buttons button {
  background: #444;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.header-buttons button:hover {
  background: #666;
}
