.search-container {
  text-align: left;
  h2:first-child {
    margin-top: 0;
  }

  .next-input {
    background-color: transparent;
    border-color: #c3c3c3;
    width: auto;
    input {
      width: 100px;
      transition: all ease-out 0.3s;
      &::placeholder {
        color: #666;
        font-size: 12px;
      }
    }
  }
  .next-input input:focus,
  .next-input input:hover {
    background-color: #fff;
    width: 200px;
    color: #333;
    &::placeholder {
      color: #999;
    }
  }

  .search-result-panel {
    position: absolute;
    z-index: 1002;
    background-color: #fff;
    display: none;
    width: 400px;
    margin-top: 10px;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    &.active {
      display: block;
    }
  }

  .search-result-item {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 0;
    word-break: break-all;
    &:hover {
      box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.1);
      background-color: #339eff;
      background: linear-gradient(to right, #1b73ff, #4ac8ff);
      color: #fff;
      .search-highlight-keyword {
        color: #ffb597;
      }
      .search-result-title {
        color: #fff;
      }
    }
  }

  .search-result-title {
    margin-bottom: 5px;
    font-size: 16px;
    color: #5485f7;
  }

  .search-highlight-keyword {
    color: #ff5b5b;
    font-weight: 500;
  }
}

.landing-layout-header {
  .next-input.next-input-single input {
    color: #fff;
    &:focus,
    &:hover {
      color: #333;
    }
  }
}

.landing-layout .search-container .next-input {
  input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
}

.blank-layout .search-container .next-input {
  input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
}
