/* Header Styling */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(to right, #4caf50, #81c784);
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #1f42cf;
  color: white;
}

.navbar a {
  text-decoration: none;
  color: white;
  margin-right: 1rem;
  font-size: 1rem;
}

.navbar a:hover {
  text-decoration: underline;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 0.5rem;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

#welcome-message {
    font-size: 1.1rem;
    font-weight: normal;
    color: #666;
    margin-left: 0.5rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.header-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.header-btn:hover {
    background-color: #0056b3;
}
