/* static/css/search_results.css */
.search-results-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #e0dcc2;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-results-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.search-info, .search-message {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.results-list {
    list-style-type: none;
    padding: 0;
}

.result-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.result-category {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.result-link {
    font-size: 1.2em;
    color: #194210; /* Match your theme */
    text-decoration: none;
    font-weight: bold;
}

.result-link:hover {
    text-decoration: underline;
    color: #596444; /* Match your theme hover */
}

.result-detail {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}