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;
  padding-top: 70px; /* Space for fixed navbar */
}

/* Link styling - no underline, consistent color */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: none;
}

a:visited {
  color: #007bff;
}

/* Kendo Grid links - override gray default */
.k-grid a {
  color: #007bff !important;
  text-decoration: none;
}

.k-grid a:hover {
  color: #0056b3 !important;
  text-decoration: none;
}

.k-grid a:visited {
  color: #007bff !important;
}

/* Button color overrides */
/* Primary button - pure red color */
.btn-primary {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
  color: white !important;
}

/* Danger button - use gray palette */
.btn-danger {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  color: white !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: #5a6268 !important;
  border-color: #545b62 !important;
  color: white !important;
}

/* Kendo MultiSelect - light blue pills */
.k-multiselect .k-chip {
  background-color: #428bca !important;
  border-color: #357ebd !important;
  color: white !important;
}

.k-multiselect .k-chip:hover {
  background-color: #357ebd !important;
  border-color: #2d6ca2 !important;
}

.k-multiselect .k-chip .k-chip-action {
  color: white !important;
}

.k-multiselect .k-chip .k-chip-action:hover {
  color: white !important;
  opacity: 0.8;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

.form-group {
    margin-bottom: 1rem;
}