/* Style the dropdown where companies are listed */
          .suggestions-list {
              border-bottom: 1px solid #bfc3c5;
              border-left: 1px solid #bfc3c5;
              border-rigth: 1px solid #bfc3c5;
              border-radius: 4px;
              max-height: 200px;
              overflow-y: auto;
              position: absolute;
              width: 100%;
              background-color: #fff;
              z-index: 1000; /* Ensure it is above other elements */
              list-style-type: none;
              margin: 0;
              padding: 0;
          }

          .suggestion-item {
              padding: 10px;
              cursor: pointer;
              border-bottom: 1px solid #eee;
          }

          .suggestion-item:last-child {
              border-bottom: none;
          }

          .suggestion-item:hover {
              background-color: #f0f0f0;
          }

          .suggestion-item strong {
              display: block;
              font-size: 16px;
          }

          .suggestion-item small {
              display: block;
              color: #666;
              font-size: 12px;
          }