/* Tutarlı tek satırlık kontroller (select / input aynı yükseklikte) */
.form-field {
  box-sizing: border-box;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid rgb(203 213 225);
  background: #fff;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(15 23 42);
}
.form-field::placeholder { color: rgb(148 163 184); }
.form-field:focus {
  outline: none;
  border-color: rgb(100 116 139);
  box-shadow: 0 0 0 1px rgb(100 116 139);
}
select.form-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  padding-right: 2rem;
}
textarea.form-field {
  height: auto;
  min-height: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  resize: vertical;
  line-height: 1.4;
}
.form-label-tight {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(51 65 85);
  margin-bottom: 0.375rem;
  line-height: 1.25;
}
.btn-row {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.btn-row:focus { outline: none; box-shadow: 0 0 0 2px rgb(148 163 184); }
.btn-row--primary { background: rgb(15 23 42); color: #fff; }
.btn-row--primary:hover { background: rgb(30 41 59); }
.btn-row--slate { background: rgb(30 41 59); color: #fff; }
.btn-row--slate:hover { background: rgb(51 65 85); }
.btn-row--amber { background: rgb(154 52 18); color: #fff; }
.btn-row--amber:hover { background: rgb(124 45 18); }
a.btn-row { text-decoration: none; }
