/* Container to position the search box */
.container {
  position: relative;
  padding-top: 100px; /* This can be adjusted based on your layout */
}

.search-box {
  position: absolute; /* Use absolute positioning */
  top: -20px; /* Adjusted top value to move the search bar higher */
  left: 50%; /* Center the search bar horizontally */
  transform: translateX(-50%); /* Align the search bar properly in the center */
  max-width: 288px;
  background: #2f3640;
  height: 60px; /* Increased height from 50px to 60px */
  border-radius: 50px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.search-box input {
  border: none;
  background: none;
  font-family: var(--fonts-classic);
  font-weight: lighter;
  outline: none;
  flex: 1;
  padding: 0;
  color: white;
  font-size: 14px;
  padding: 14px 20px; /* Adjust the padding if needed */
  transition: 0.4s;
}

.search-box input::placeholder {
  color: #aaa; /* Placeholder color */
  opacity: 0.7; /* Slightly transparent */
}

.search-btn {
  float: right;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background: #2f3640;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 0px 1px #1e2030;
  transition: 0.1s;
  cursor: pointer;
}

.search-btn i {
  color: var(--brand-color);
}

.search-btn:active {
  box-shadow: 0px 0px 0px 0px #1e2030;
  transform: translateY(4px);
}

.no-results {
  color: white; /* White text */
  font-size: 18px; /* Adjust font size as needed */
  text-align: center; /* Center align the text */
  margin-top: 20px; /* Add some space at the top */
}
