:root {
    --primary: #5e7a1f; /* More muted olive green */
    --secondary: #8b6f4e; /* Earthy brown (unchanged) */
    --accent: #b7b97b; /* Muted moss yellow-green (unchanged) */
    --background: #e6e3d6; /* Slightly darker earthy off-white */
    --text: #3e4631; /* Deep olive/brown for text (unchanged) */
}
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 #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: var(--background);
  color: var(--text);
}

.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;
}

.btn-primary {
    background-color: var(--secondary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--primary) !important;
}

.btn-active {
    background-color: var(--accent) !important;
}

.btn-danger {
    background-color: var(--accent) !important;
    border-color: var(--primary) !important;
}

.btn-danger:hover {
    background-color: var(--primary) !important;
}

/* Navbar */
.navbar, .navbar-brand, .nav-link, .navheader {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.description {
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url('/images/Banner.png');
    background-size: auto 100%;
    background-position: left center;
    background-repeat: repeat-y;
    padding: 2rem;
    border-radius: 1rem;
}

.staff-background {
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('/images/Banner.png');
    background-position: left center;
    background-repeat: repeat-y;
    padding: 2rem;
    border-radius: 1rem;
}

.included {
    background-color: red !important;
}

.selected {
    background-color: green;
}

.plain-link {
    color: var(--secondary);
}