html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

:root {
  --brand-orange: #ff8c00;
  --brand-orange-soft: rgba(255, 140, 0, 0.12);
}

body {
  background-color: #f6f2eb;
  background-image: none;
  color: #2b2b2b;
  margin-bottom: 60px;
}

.text-orange {
  color: var(--brand-orange);
}

.bg-orange-soft {
  background-color: var(--brand-orange-soft);
}

.btn-orange {
  background-color: var(--brand-orange);
  color: #ffffff;
  border: none;
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: #e67f00;
  color: #ffffff;
}

.btn-outline-orange {
  border: 1px solid var(--brand-orange);
  color: var(--brand-orange);
}

.btn-outline-orange:hover {
  background-color: var(--brand-orange);
  color: #ffffff;
}

.card-soft {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.08);
}

.form-control,
.form-select,
.select2-container .select2-selection--single {
  min-height: 48px;
  border-radius: 12px;
}

.form-control:focus,
.form-select:focus,
.select2-container--default .select2-selection--single:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 140, 0, 0.25);
  border-color: var(--brand-orange);
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
}

.select2-container--default .select2-selection__arrow {
  height: 100%;
}

.navbar .form-control {
  min-width: 220px;
}

.table td,
.table th {
  vertical-align: middle;
}

.badge-orange {
  background-color: var(--brand-orange);
}