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;
}

/* Basic Styling */
.navbar-nav .nav-link {
    color: #007bff; /* Blue color for normal state */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

    /* Hover effect */
    .navbar-nav .nav-link:hover {
        color: #fff; /* White color on hover */
        background-color: #007bff; /* Blue background on hover */
        border-radius: 5px; /* Rounded corners on hover */
    }

/* Optional: Active state (highlight current page) */
.navbar-nav .nav-item.active .nav-link {
    color: #fff; /* White text */
    background-color: #0056b3; /* Darker blue background for active item */
}

/* Make the navbar links bigger and more spaced out */
.navbar-nav .nav-item {
    margin-left: 15px; /* Space between items */
}

/* Mobile Responsiveness: When the screen is smaller, links take up full width */
@media (max-width: 768px) {
    .navbar-nav .nav-item {
        text-align: center; /* Center align on small screens */
        width: 100%; /* Full width for each item */
    }
}
