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;
}

.btn {
    text-transform: none;
}


/* Navbar link hover effect */
.nav-link {
    margin-right:20px;
    padding:3px;
    color: #fff; /* Default color */
    transition: color 0.3s, background-color 0.3s; /* Smooth transition */
}

.nav-link:hover {
    color: #ffd700; /* Change this color as desired */
    background-color: #258cfb; /* Add a background color on hover */
    border-radius: 10px; /* Optional: round the edges */
}

/* Highlight the active nav item */
.nav-item.active .nav-link {
    color: #000000 !important; /* Change this color as desired */
    background-color: #f0f0f0; /* Add a background color for the active state */
    border-radius: 10px; /* Optional: round the edges */
}

.btn-lg-custom {
    padding: 0.5rem 1.5rem; /* Adjusts padding */
    font-size: 1.125rem; /* Slightly larger font size */
}





