@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

body {
  background-color: #1b1c22;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#search-bar {
  width: 30%;
}

#searchy {
  width: 100%;
  background-color: rgb(30, 39, 48);
  border: rgb(114, 114, 114) 1px solid;
  color: white;
  padding: 7px 12px;
  border-radius: 4px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#searchy::placeholder {
  color: #cdd4e9;
}

#searchy:focus {
  outline: none;
  border-color: #719ece;
  box-shadow: 0 0 5px #719ece;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(10, 10, 14);
  color: white;
  padding: 0px 10px;
  height: 70px;
  border-bottom: rgb(87, 87, 87) 2px solid;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.Logo {
  font-size: 50px;
  text-shadow: 0px 0px 5px white;
  font-family: "Rubik", sans-serif;
  margin: 0;
}

#menu-button {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

#profile-section {
  display: flex;
  align-items: center;
}

#profile-button,
#profile {
  border-radius: 50%;
  background-color: transparent;
  color: white;
  cursor: pointer;
  margin-right: 10px;
}

#profile-button {
  border: none;
}

#profile {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  object-fit: cover;
}

#search-results {
  display: flex;
  position: fixed;
  flex-direction: column;
  width: 30%;
  padding: 7px 12px;
  border-radius: 10px;
  background-color: rgb(13, 16, 22);
}

.search-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.search-card {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  padding: 1px;
  border-radius: 5px;
}

.search-card:hover {
  background-color: rgb(24, 30, 41);
}

.search-info {
  display: flex;
  flex-direction: column;
}

.search-info h3 {
  margin-bottom: 5px;
}

.search-info p {
  margin: 0;
}

.error-show {
  display: flex;
  justify-content: center;
  align-items: center;
}
