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;
}

/* Add this CSS to your stylesheet */

footer {
    padding: 1rem 0; /* Reduce padding */
    margin-top: auto; /* Push footer to bottom */
    font-size: 0.9rem; /* Reduce font size if needed */
    line-height: 1.4; /* Adjust line height */
    position: relative; /* Or 'static' depending on layout */
    width: 100%;
    max-height: 60px; /* Set a maximum height */
    overflow: hidden; /* Prevent content overflow */
}

/* If using flexbox for layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* For copyright text specifically */
footer p {
    margin: 0.5rem 0; /* Reduce paragraph margins */
}