html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary);
}

/* Base structural styles handled in theme-naseh.css */

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating>.form-control-plaintext:focus::placeholder,
.form-floating>.form-control:focus::placeholder {
  text-align: start;
}

/* ==================== Bootstrap Color Overrides ==================== */
/* Replace ALL blue colors with Saudi Green */
.btn-primary {
  background-color: #006C35 !important;
  border-color: #006C35 !important;
  color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #004d25 !important;
  border-color: #004d25 !important;
  color: white !important;
}

.text-primary {
  color: #006C35 !important;
}

.bg-primary {
  background-color: #006C35 !important;
}

.border-primary {
  border-color: #006C35 !important;
}

a {
  color: #006C35;
}

a:hover {
  color: #004d25;
}

.link-primary {
  color: #006C35 !important;
}

.link-primary:hover {
  color: #004d25 !important;
}

/* Badge Primary */
.badge-primary,
.badge.bg-primary {
  background-color: #006C35 !important;
}

/* Alert Primary */
.alert-primary {
  background-color: rgba(0, 108, 53, 0.1) !important;
  border-color: #006C35 !important;
  color: #004d25 !important;
}