
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}
#main-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 2em 2em 1em 2em;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
header {
    text-align: center;
    margin-bottom: 1.5em;
}
h1 {
    color: #2c3e50;
    margin-bottom: 0.2em;
}
.subtitle {
    color: #555;
    font-size: 1.1em;
    margin-top: 0;
}
#query-form {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}
#query {
    flex: 1;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
button {
    padding: 0.5em 1.5em;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
#response {
    margin-top: 1em;
    padding: 1em;
    background: #eaf6ff;
    border-radius: 4px;
    min-height: 40px;
    word-break: break-word;
}
.disclaimer {
    margin-top: 1.5em;
    font-size: 0.95em;
    color: #888;
    text-align: center;
}
footer {
    margin-top: 2em;
    text-align: center;
    font-size: 1em;
}
.inspired-note {
    margin-top: 8px;
    font-size: 0.95em;
    color: #888;
}
#bylaw-details {
    margin-top: 2em;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 1em;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
#close-details {
    float: right;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #888;
    cursor: pointer;
}
