body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f0f0f0;
  }
  h1 {
    color: #333;
  }
  .tool {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  textarea, input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
  }
  button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  .output {
    padding: 10px;
    background: #eaeaea;
    font-family: monospace;
    white-space: pre-wrap;
    cursor: pointer;
  }
  .output-container {
    position: relative;
    margin-top: 10px;
  }
  #searchBar {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .copy-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
      display: none;
  }

    .tooltip {
      position: absolute;
      top: -25px;
      right: 10px;
      background-color: #333;
      color: #fff;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 12px;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .tooltip.show {
      opacity: 1;
    }