/* Local bootstrap-lite subset: form controls and a few utilities */
/* This is not full Bootstrap; it covers only what's used on the page. */

:root {
  --bs-primary: #d4a574;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid currentColor;
  border-color: var(--border, #bd8f5d52);
  border-radius: 0.5rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #d4a574;
    box-shadow: 0 0 0 0.25rem #bd8f5d52;
}

.w-100 { width: 100% !important; }

/* Buttons (keep minimal to avoid clashing with existing .btn styles) */
.btn-primary { background-color: var(--bs-primary); }


