#wcv-store-form {
  min-width: 100%;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
}

.tab-container {
  border: 1px solid #ddd;
  border-radius: 10px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.tab-button {
  flex: 1;
  padding: 12px;
  background: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.tab-button.active {
  background: #21759b;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.wcv-field {
  margin-bottom: 20px;
}

.wcv-field label {
  display: block;
  font-weight: 100 !important;
  margin-bottom: 6px;
}

.wcv-field input[type="text"],
.wcv-field textarea,
.wcv-field input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.wcv-field textarea {
  height: 100px;
}

.preview-img {
  display: block;
  width: 100px;
  margin: 10px 0;
  border-radius: 8px;
}

.wcv-success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: bold;
}

input[type="submit"] {
  padding: 10px 20px;
  background: #3C1A5B;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
