
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    a {
      text-decoration: none;
      color: black;
    }

    body {
      font-family: sans-serif;
      padding: 20px;
      background-color: #fff;
    }

    .bottom {
      padding: 15px;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      background: #fff;
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 8px;
    }

    .search-wrapper {
      position: relative;
      width: 100%;
display: flex; 
flex-direction: row;
    }

    .search-wrapper::before {
      content: "\f002"; /* Font Awesome search icon */
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #555;
      font-size: 16px;
      pointer-events: none;
    }

    .b-nav {
      backdrop-filter: blur(20px);
      box-shadow: 1px 1px 10px rgba(21, 21, 21, 0.1);
      background-color: rgba(255, 255, 255, 0.2);
      height: 60px;
      border-radius: 20px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      width: 100%;
      padding-left: 40px; /* Enough space for icon */
      outline: none;
      font-size: 16px;
    }

  .btn {
      backdrop-filter: blur(20px);
      box-shadow: 1px 1px 10px rgba(21, 21, 21, 0.1);
      background-color: rgba(255, 255, 255, 0.2);
display: flex;
justify-content: center;
align-items: center;
      height: auto;
width: 18vw;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      outline: none;
      font-size: 16px;
text-align: center;
    }
    .suggestions {
      position: absolute;
      bottom: 70px;
      width: 100%;
      background: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      max-height: 300px;
      overflow-y: auto;
      z-index: 999;
    }

    .suggestion-item {
      padding: 10px 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

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

    .suggestion-item i {
      color: #555;
    }
    .results {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }
    .result-item {
    display: flex;
    gap: 15px;
    }