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;
}

.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;
}
/* Sidebar active link with left colored border */
.nav-link.active-link {
    color: #0d6efd !important; /* Bootstrap primary */
    font-weight: 600;
}

    .nav-link.active-link::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px; /* Thickness of the border */
        background-color: #0d6efd; /* Bootstrap primary color */
        border-radius: 0 4px 4px 0; /* Rounded edges on the right side */
    }
.nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1); /* Light primary background */
    border-radius: 4px;
}
.nav-link.active {
    color: #0d6efd !important; /* Bootstrap primary color */
    font-weight: 600;
    background-color: rgba(13, 110, 253, 0.1); /* Subtle highlight */
    border-radius: 4px;
}