/* Mobile-specific layout styles */

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
  }

  .mobile-header .logo {
    max-width: 100px !important;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .mobile-header .mobile-description {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: left;
    line-height: 1.3;
    max-width: calc(100% - 115px);
  }
}

/* Smallest device navbar adjustments */
@media (max-width: 375px) {
  .navbar-toggler {
    font-size: 0.8rem; /* Smaller font size for hamburger menu text */
    padding: 0.25rem 0.5rem; /* Adjust padding to match smaller font */
  }
  .navbar-brand {
    font-size: 1rem; /* Smaller font size for brand text */
  }
  .nav-link {
    font-size: 0.9rem; /* Smaller font size for nav links */
  }
}
