/*
 * Static Social OSINT – hack‑theme styling.
 * Similar look to the FastAPI version but adapted for multiple inputs
 * and checkbox groups.
 */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: #66ff66;
    margin-bottom: 1.5rem;
}

form {
    margin-bottom: 1rem;
}

.fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.fields input {
    flex: 1 1 200px;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #00ff00;
    font-size: 1rem;
}

fieldset {
    border: 1px solid #004d00;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #0f0f0f;
    display: inline-block;
    text-align: left;
}

fieldset legend {
    padding: 0 0.5rem;
    color: #66ff66;
    font-weight: bold;
}

fieldset label {
    display: block;
    margin-bottom: 0.25rem;
    color: #00ff00;
    font-size: 0.9rem;
}

fieldset input[type="checkbox"] {
    margin-right: 0.4rem;
}

button[type="submit"] {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #004d00;
    color: #00ff00;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #006600;
}

#status {
    margin-top: 0.5rem;
    font-style: italic;
    color: #66ff66;
}

ul#results {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

ul#results li {
    margin: 0.5rem 0;
}

ul#results a {
    color: #00ff00;
    text-decoration: none;
    word-break: break-all;
}

ul#results a:hover {
    text-decoration: underline;
}