h1 {
  text-align: center;
  color: green;
}

html {
  background-color: darkslategray;
}

label {
  color: #f0f0f0;
  font-size: larger;
}

button a {
  color: white;
  text-decoration: none;
}

button a:active {
  color: white;
  text-decoration: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid #555;
  border-radius: 6px;
  font-size: 14px;
}

button {
  display: block;
  padding: 12px;
  margin: 1rem auto;
  background-color: #4caf50;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a045;
}

input,
textarea {
  display: flex;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.user {
  display: flex;
}

.pass {
  display: flex;
}

button {
  display: flex;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

a {
  display: block;
  text-align: center;
}

.search-bar-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#search-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
}

.suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
}

.suggestion {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
}

.suggestion:hover {
  background-color: #f0f0f0;
}

.suggestion img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.suggestion-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

#profile-button {
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 20px;
  color: rgb(136, 161, 91);
  background: none;
  border:none;

}
