body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

header {
  background-color: #3498db;
  color: white;
  padding: 1rem;
  text-align: center;
}

.btn {
  background-color: #3498db;
  color: white;
  padding: 0.75rem 1.75rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #2c80b4;
  transform: scale(1.03);
}

/* Style for search bar */
#store-search {
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 10px 16px;
  background: #f3f3f3;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

#store-search:focus {
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #fff;
}

.search-wrapper {
  position: relative;
  display: inline-block;
  width: 20rem; /* Adjust width as needed */
}

#store-search {
  width: 25%;
  padding-right: 1em; /* Space for icon */
  box-sizing: border-box;
}


#no-results {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #888;
  font-size: 1.3rem;
  text-align: center;
  width: 100%;
  margin: 0;
  z-index: 1;
}

.no-results-message {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #888;
  font-size: 1.3rem;
  text-align: center;
  width: 100%;
  margin: 0;
  z-index: 1;
}
.no-results-message.show {
  display: block;
}
#card-container {
  position: relative;
  min-height: 300px;
}
