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;
}

/* Light blue background for the entire navbar */
.bg-light-blue {
    background-color: #d9f0ff; /* Light blue */
}

/* Darker oval background for the Home link */
.home-link {
    background-color: #007bff; /* Darker blue */
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
}

/* Custom underline for the active link */
.navbar-nav .nav-link.active {
    position: relative;
    /*color: #007bff !important;  Blue color for the active link */
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px; /* Adjust as needed for spacing */
    height: 3px; /* Thicker underline */
    background-color: #007bff; /* Blue color */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
