	.open-search-btn {
      font-size: 24px;
      cursor: pointer;
      color: #003057;
    } 
    .search-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    } 
    .search-container {
      background: white;
      border-radius: 10px;
      width: 600px;
      max-width: 90%;
      padding: 30px 20px 20px;
      position: relative;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	  top:70px;
    } 
    .close-btn {
      position: absolute;
      top: 3px;
      right: 8px;
      font-size: 26px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      z-index: 1001;
    } 
    .search-wrapper {
      position: relative;
      width: 100%;
    }
    .search-wrapper input {
      width: 100%;
      padding: 10px 75px 10px 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      box-sizing: border-box;
    }
    .search-wrapper .fa-search {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #003057;
      font-size: 18px;
      pointer-events: none;
    } 
    .search-wrapper .fa-microphone {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #003057;
      font-size: 18px;
      cursor: pointer;
    }
    .results {
      margin-top: 20px;
      max-height: 300px;
      overflow-y: auto;
    }
    .results p {
      margin: 8px 0;
      padding: 6px 10px;
      border-bottom: 1px solid #eee;
      font-size: 15px;
      cursor: pointer;
    }
    .results p:hover {
      background-color: #f0f0f0;
    }
    .results p.no-results {
      font-style: italic;
      color: #999;
      text-align: center;
      border: none;
    }