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 {

}

.nav-link {
  padding: 0.5rem 0;
  color: #333;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

aside {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.weird-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #6c757d;
  border-top: 1px solid #dee2e6;
}
.form-control {
  border-radius: 4px;
}

.btn {
  border-radius: 1px !important;
  color: black !important;
}

.btn:focus,
.btn:hover {
  color: black !important;
}

.full-height {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.login-box {
  padding: 2rem;
}

/* Flatter, cleaner form look */
form .form-control,
form .form-check-input,
form textarea {
  border-radius: 4px; /* smaller radius */
  border: 1px solid #ccc; /* softer border */
  box-shadow: none; /* remove Bootstrap glow */
  padding: 0.45rem 0.75rem; /* tighter vertical padding */
  font-size: 0.95rem;
}

form .form-control:focus,
form .form-check-input:focus,
form textarea:focus {
  border-color: #007bff; /* match Bootstrap primary */
  box-shadow: 0 0 0 0.15rem rgba(0,123,255,0.15); /* subtle focus */
}

form label.form-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

form .row.g-3 {
  margin-bottom: 1rem;
}

form textarea {
  resize: vertical; /* no forced horizontal resize */
}

/* Checkbox alignment cleanup */
.form-check {
  padding-left: 1.75em;
}
.form-check-input {
  margin-left: -1.75em;
}
.collapse-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.collapse-section.show {
  max-height: 500px; /* enough for your content */
  opacity: 1;
}
textarea {
  resize: none;
}
.form-check-input:checked {
  background-color: #555; /* dark grey fill */
  border-color: #555;     /* dark grey border */
}

/* Optional: hover/focus ring in darker grey */
.form-check-input:focus {
  border-color: #444;
  box-shadow: 0 0 0 0.2rem rgba(85, 85, 85, 0.25);
}
.card {
  border-radius: 4px; /* much sharper corners */
  border: 1px solid #ddd; /* subtle border */
  box-shadow: none; /* remove Bootstrap shadow */
  background-color: #fff; /* clean white background */
}

.card-header {
  border-bottom: 1px solid #ddd;
  background-color: #f8f9fa; /* soft neutral header background */
  font-weight: 500;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 4px 4px 0 0; /* match sharp style */
}

/* Inputs inside cards - reuse the flat style */
.card .form-control,
.card .form-check-input,
.card textarea {
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: none;
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
}

.card .form-control:focus,
.card .form-check-input:focus,
.card textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.15rem rgba(0,123,255,0.15);
}

.card .form-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
