/* ===== Card wrapper ===== */
.zcb-card-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Title ===== */
.zcb-card-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #0073aa;
}

/* ===== Form layout ===== */
.zcb-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ===== Form group ===== */
.zcb-form-group {
  display: flex;
  flex-direction: column;
}

/* ===== Icon + Input ===== */
.input-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Icon styling */
.input-icon .dashicons,
.zcb-card-wrapper .dashicons {
  pointer-events: none;
}

/* Input / Select / Textarea styling */
.input-icon input,
.input-icon select,
.input-icon textarea {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fafafa;
  transition: border-color .3s, background .3s;
  cursor: pointer;
  margin: 0;
}

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
  border-color: #0073aa;
  background: #fff;
}

/* ===== Buttons ===== */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form-actions .button {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}
.form-actions .zcb-view-map {
  color: #0073aa;
  border: 2px solid #0073aa;
}
.form-actions .zcb-view-map:hover {
  background: #0073aa;
  color: #fff;
}
.form-actions .zcb-submit {
  background: #0073aa;
  color: #fff;
  border: none;
}
.form-actions .zcb-submit:hover {
  background: #005177;
}

/* ===== Result section ===== */
.zcb-result {
  display: none;
  margin-top: 2rem;
}
.zcb-result.show {
  display: block;
}
.zcb-result__map {
  width: 100%;
  height: 250px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}
.zcb-result__info {

}
.zcb-result .zcb-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width:480px) {
  .zcb-card-wrapper {
  }
  .form-actions {
    flex-direction: column;
  }
  .form-actions .button {
    width: 100%;
  }
}
#vehicle-info{text-align:center}
#vehicle-info img {max-width:150px;height:auto}