/* vim: set ai si ts=4 et sts=4 sw=4: */
body {
    font-family: "Bitstream Vera Sans", Verdana, sans-serif;
}
a { font-weight: bold; text-decoration: none; }
a:link    { color: #aaa; }
a:visited { color: #888; }
a:focus   { text-decoration: underline; }
a:hover   { background: #888; color: white; }
a:active  { text-decoration: none; color: white; }

.cont {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    padding: 0.5em;
    margin: 0.5em;
    background: #eee;
    color: #444;
    display: flow-root;
    overflow: auto;
}

/* Search + Bookmarks side by side at the same height */
.top-controls {
    display: flex;
    gap: 1em;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0.5em 0;
}
.top-controls form {
    flex: 0 1 auto;
}

.bottom-row {
    display: flex;
    gap: 2em;
    align-items: flex-end;
    margin-top: 0.5em;
}
.col-ua {
    flex: 1 1 0;
    min-width: 0;
}
.col-ua hr {
    border: none;
    border-top: 0.1em solid #ccc;
    margin: 0.5em 0;
}

h1 { display: inline; }
.title {
    text-align: center;
    border-bottom: 0.1em solid #444;
}

.browser {
    font-weight: bold;
    font-size: small;
    color: #eee;
    background: #444;
    text-align: center;
}
.entity {
    font-size: small;
    color: #444;
    background: #eee;
    text-align: center;
}
.warn { font-weight: bold; color: #900; }

.info-blocks {
    display: flex;
    gap: 2em;
    justify-content: center;
    margin-top: 0.5em;
    flex-wrap: wrap;
}
.block-route,
.block-geoip {
    flex: 1 1 18em;
    min-width: 0;
}
.block-route { border-right: 0.1em solid #ccc; padding-right: 2em; }

.whois {
    font-weight: bold;
    font-size: small;
    margin: 0.3em 0;
}

/* Right column: the poem */
.lyric {
    flex: 0 0 22em;
    background-color: #f4f4f4;
    color: #444;
    padding: 2em;
    white-space: pre-wrap;
    text-align: left;
    align-self: flex-end;
}
/* Right column: bookmarks (same box, flow layout) */
.bookmarks {
    flex: 0 0 22em;
    background-color: #f4f4f4;
    color: #800;
    padding: 2em;
    text-align: left;
    align-self: flex-end;
    line-height: 1.8;
}

/* Search bar */
.fl button { color: white; background: #888; font-family: inherit; font-size: 80%; }
.fl input  { color: black; background: #eee; }

details > summary {
    cursor: pointer;
    user-select: none;
}
