/* Basic styling for The Last Strop order form */
.tls-order-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
}

.tls-order-form input[type="text"],
.tls-order-form input[type="email"],
.tls-order-form input[type="date"],
.tls-order-form textarea,
.tls-order-form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.tls-fieldset {
  border: 1px solid #ccc;
  padding: 10px 12px;
  margin-bottom: 15px;
}

.tls-fieldset legend {
  padding: 0 6px;
  font-weight: bold;
}

.tls-help-text {
  font-size: 0.9em;
  margin-top: 0;
  margin-bottom: 8px;
}

.tls-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 10px;
}

.tls-qty-row label {
  flex: 1 1 auto;
}

.tls-qty-row input[type="number"],
input[name^="qty_"] {
  width: 90px !important;
  max-width: 90px !important;
  min-width: 90px !important;
  display: inline-block;
}

.tls-addon-line {
  display: block;
  margin-bottom: 5px;
}

.tls-submit {
  padding: 10px 20px;
}
