/* header.css - Styling for App.js Header */

header {
  background: var(--background2); /* Light grey for a soft, clean look */
  padding: 10px 0;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--background3); /* Subtle border for separation */
}

.navbar {
  display: flex;
  justify-content: left;
  gap: 20px;
  padding-left: 20px;
}

.navbar a {
  color: var(--text1); /* Dark text for readability */
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 10px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.navbar a:hover {
  background: var(--accent1); /* Muted cyan for subtle contrast */
  color: white;
}
