body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: white;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #333;
  padding: 10px;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: limegreen;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 30px;
  text-align: center;
}

input, textarea, button {
  margin: 10px;
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 5px;
}

button {
  background-color: limegreen;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: green;
}

#profileBar {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
}

#profileBar img {
  border-radius: 50%;
  margin-right: 10px;
}

#profileBar button {
  background-color: #ff5f57;
  color: white;
  border: none;
  padding: 5px 10px;  /* Reduced padding for a smaller button */
  font-size: 14px;  /* Adjust font size to match the design */
  border-radius: 5px;
  cursor: pointer;
}

#profileBar button:hover {
  background-color: #ff3030;
}
