body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 40px;
  transition: background 0.3s, color 0.3s;
  background-color: lightblue;
}

.dark {
  background-color: #121212;
  color: #ffffff;
}

.search {
  margin-bottom: 20px;
}

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

button {
  padding: 10px 15px;
  cursor: pointer;
}

#profile {
  margin-top: 30px;
}

img {
  border-radius: 50%;
  margin-bottom: 10px;
}

a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: blue;
}

/* Dark mode link fix */
.dark a {
  color: lightblue;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 5px 0;
}

li a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.dark li a {
  color: lightblue;
}

.top-bar {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}