body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.container {
  display: flex;
  height: 100vh;
}

.search-box {
  width: 25%;
  background-color: #ffffff;
  padding: 20px;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
  position: relative;
}

.g-recaptcha {
  margin-bottom: 15px;
}

.search-box label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.search-box input,
.search-box select {
  width: 100%;
  margin-bottom: 15px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.image-placeholder {
  width: 100%;
  height: 150px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #666;
}

.search-button {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.store-list {
  width: 75%;
  background-color: #ffffff;
  padding: 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

.store-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.store-left {
  flex: 1;
}

.store-left h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.store-left p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.store-right {
  text-align: right;
  flex: 1;
}

.store-right p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

.stock-low {
  color: #FFA500;
  font-weight: bold;
}

.stock-available {
  color: #fc28fc;
  font-weight: bold;
}

.store-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-header .update-message {
  color: #666;
  font-size: 14px;
}

@media (max-width: 640px) {
  .container {
    flex-direction: column;
    height: auto;
  }
  
  .search-box,
  .store-list {
    width: 100%;
    border-right: none;
  }
  
  .search-box {
    border-bottom: 1px solid #ccc;
  }
}

.suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    width: 90%;
    z-index: 1000;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

@media (max-width: 640px) {
  .container {
    flex-direction: column;
    height: auto;
  }
  
  .search-box,
  .store-list {
    width: 100%;
    border-right: none;
  }
  
  .search-box {
    border-bottom: 1px solid #ccc;
  }
}
