body {
    font-family: 'Roboto', sans-serif;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .card {
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    margin: 0.5rem 0;
    border-radius: 5px;
  }
  
  #organization-container {
    margin: 0 auto;
    padding: 1rem;
  }

  .filter-container {
    margin: 0 auto;
    padding-left: 1rem;
    padding-top: 0rem;
  }
  
  @media screen and (max-width: 768px) {
    .card {
      width: 100%;
      margin: 0.5rem auto;
    }
  }

  .navbar-brand {
    display: flex;
    align-items: left; /* Align items vertically */
    justify-content: left; /* Center content horizontally */
  }
  
  .navbar-item.title {
    margin: 0; /* Remove extra margins */
  }
  
  .navbar-item i {
    font-size: 1.5rem; /* Adjust icon size */
    vertical-align: middle; /* Align icon vertically */
    margin-left: 0.5rem; /* Add spacing between text and icon */
  }

  .navbar {
    padding: 0.1rem 0.5rem; /* Reduce top and bottom padding */
  }
  
  .icons {
    margin-top: 0.5rem;
  }
  
  .icons i {
    font-size: 1.25rem;
    color: #4a4a4a;
    transition: color 0.3s ease;
    margin-right: 0.5rem;
  }
  
  .icons i:hover {
    color: #3273dc;
  }
  
  .image img {
    border-radius: 5px; /* Rounded corners for images */
  }
  
  .fab.fa-instagram {
    color: #e4405f; /* Instagram brand color */
    transition: color 0.3s ease;
  }
  
  .fab.fa-instagram:hover {
    color: #d6249f; /* Hover effect for Instagram icon */
  }

  .business-name {
    margin-bottom: 0.01rem; /* Reduce space below the business name */
  }
  
  .button.is-small {
    margin-top: 0 !important; /* Remove extra space above buttons */
    margin-bottom: 0.5rem; /* Keep a consistent margin below buttons */
  }

  .title:not(.is-spaced) + .subtitle {
    margin-top: 0em !important; /* Override the default margin-top */
    margin-bottom: 0.5em; /* Add your desired margin-bottom */
  }