    #search-container {
      position: relative;
      /* width: 200px; */
      margin: 0px auto;
      top: 0px;;
    }

    #search-input {
/*
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
*/
      background: url('/themes/site_themes/altopro/images/search_bg.png');
      border: none;
      width: 148px;
      height: 14px;
      padding: 5px;
      float: left;
    }

    #search-results {
      position: absolute;
      top: 28px;
      right: 0px;
      max-width: 50%;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      max-height: 300px;
      overflow-y: auto;
      z-index: 10;
      display: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .search-result-item {
      padding: 12px 16px;
      border-bottom: 1px solid #eee;
      text-decoration: none;
      color: #333;
      display: block;
    }

    .search-result-item:hover {
      background-color: #f5f5f5;
    }

    .search-result-title {
      font-weight: bold;
      margin-bottom: 4px;
    }

    .search-result-desc {
      font-size: 14px;
      color: #666;
    }

    .highlight {
      background-color: white;
      font-weight: bold;
    }
