body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.store-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  position: relative;
}

.main-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumb {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.store-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.store-left {
  flex: 1;
  min-width: 300px;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.store-left select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.store-title {
  margin-bottom: 15px;
}

.store-info {
  margin-top: 20px;
}

.store-right {
  flex: 2;
  min-width: 300px;
}
