  .btn-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background-color: #f8f9fa;
    color: #212529;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .btn-filter:hover {
    background-color: #e9ecef;
    text-decoration: none;
    color: inherit;
  }

  .btn-filter .icon-left {
    font-size: 20px;
    color: #6c757d;
    margin-right: 10px;
  }

  .btn-filter .icon-right {
    font-size: 18px;
    color: #6c757d;
  }

  .btn-filter .text-content {
    flex-grow: 1;
  }

  .btn-filter .city-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
  }

  .btn-filter .zip-code {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
  }

  .button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .button-wrapper {
    flex: 0 0 48%;
    /* Two buttons per row */
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .button-wrapper {
      flex: 0 0 100%;
      /* One button per row on smaller screens */
    }

    .btn-filter {
      padding: 12px;
      /* Slightly smaller padding for smaller screens */
      font-size: 14px;
      /* Adjust font size for smaller screens */
    }

    .btn-filter .icon-left,
    .btn-filter .icon-right {
      font-size: 16px;
      /* Slightly smaller icons */
    }

    .btn-filter .city-name {
      font-size: 14px;
      /* Adjust city name font size */
    }

    .btn-filter .zip-code {
      font-size: 12px;
      /* Adjust ZIP code font size */
    }
  }