body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
#queryInput {
    width: 80%;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
}
#executeButton {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}
#results {
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px;
}
#output {
    white-space: pre-wrap; /* Preserves whitespace and wraps text */
}