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;
}

.custom-search-group {
    position: relative;
}

.custom-search-icon {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 10px; /* Adjust horizontal position */
    transform: translateY(-50%);
    font-size: 1.2em; /* Icon size */
    color: #aaa; /* Icon color */
}

.custom-search-input {
    width: 100%; /* Ensure full width if needed */
    padding-left: 35px; /* Add padding for the icon */
    height: 40px; /* Adjust height as needed */
    font-size: 1rem; /* Adjust font size */
    border: 1px solid #ccc; /* Input border style */
    border-radius: 5px; /* Optional: rounded corners */
}