/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e7d32;
  padding: 12px 25px;
  color: white;
}

.nav-logo {
  font-size: 20px;
  font-weight: bold;
}

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

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: underline;
}


.container {
  margin-top: 40px;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 30px;
}

input {
  padding: 8px;
  width: 200px;
}

button {
  padding: 8px 15px;
  margin-left: 5px;
}

p {
  margin-top: 20px;
  font-weight: bold;
}