     body {
            font-family: "Segoe UI", Arial, sans-serif;
            background: #fafafa;
            padding: 40px;
            max-width: 800px;
            margin: auto;
            color: #222;
        }
        h1 {
	      color: #2f3640;
	      text-align: center;
              border-bottom: 2px solid #ddd;
              padding-bottom: 10px;
        }
        ul {
            margin-top: 10px;
        }
        .note {
            margin-top: 25px;
            font-style: italic;
            color: #666;
        }

    #searchBox {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    input[type="text"] {
      width: 400px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }
    button {
      padding: 10px 20px;
      background-color: #2e86de;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    button:hover {
      background-color: #1e60a7;
    }
    #queryDisplay {
      margin-top: 30px;
      font-size: 18px;
      font-weight: bold;
      color: #353b48;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
      background-color: white;
    }
    th, td {
      border: 1px solid #dcdde1;
      padding: 10px;
      text-align: left;
      vertical-align: top;
    }
    th {
      background-color: #f1f2f6;
      color: #2f3640;
    }
    .result-text {
      color: #555;
      white-space: pre-wrap;
    }

    .sample-q {
      text-decoration: none;   /* remove underline */
      font-weight: bold;       /* bold on hover */
      color: inherit;          /* keep normal text color */
      cursor: pointer;         /* shows it's clickable */
    }

    .sample-q:hover {
      color: blue;             /* blue on hover */
      font-weight: bold;       /* bold on hover */
      text-decoration: none;   /* ensure no underline */
    }


    a {
      text-decoration: none;   /* remove underline */
      color: inherit;          /* keep normal text color */
    }

    a:hover {
      color: blue;             /* turn blue on hover */
      font-weight: bold;       /* make bold on hover */
    }
