/* Global Styles */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.tagline {
  font-size: 16px; /* Adjust size as needed */
  color: grey; /* Text color */
  margin-top: 5px; /* Space between the logo and tagline */
  text-align: center; /* Center align the text */
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.logo {
  width: 300px;
  
  margin-bottom: 20px;
}

.search-bar-container {
  display: flex;
  flex-direction: column; /* Stack search bar and button vertically */
  align-items: center;
  gap: 10px;
}

#search-bar {
  width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#search-button {
  padding: 10px 20px;
  width: 300px;
  font-size: 16px;
  border: none;
  background-color: #28a745; /* Green color */
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

#search-button:hover {
  background-color: #218838; /* Darker green on hover */
}

/* Results Container */
.results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.grid-item {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 10px;
  width: 80%;
}

.grid-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.dropshipping-status {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
