/* /var/www/html/styles/search_template.css */
/* This is the new standard template for search and results pages. */

body {
    background-color: lightblue;
    font-family: sans-serif;
    padding: 20px;
}
.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}
a {
    text-decoration: none;
    color: #0056b3;
}
hr {
    margin: 20px 0;
}
.result-item {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}
.result-header {
    font-weight: bold;
    cursor: pointer;
    color: #0056b3;
}
.result-content {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}
.result-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #eee;
    padding: 10px;
    border-radius: 4px;
}
