/* Base styles - applied to both mobile and desktop */
.search-container {
    text-align: center;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12pt;
}

.search-container input[type="text"] {
    width: 80%;
    padding: 5px;
}

.search-container button {
    font-size: 125%;
    padding: 5px 10px;
}

/* Styles for screens wider than 600px (typically desktops) */
@media (min-width: 600px) {
    .search-container input[type="text"] {
        width: 50%; /* Larger input field for desktop */
    }

    /* Additional desktop-specific styles can be added here */
}

/* Styles for screens smaller than 600px (typically mobiles) */
@media (max-width: 599px) {
    .search-container {
        text-align: center;
    }

    /* Additional mobile-specific styles can be added here */
}


#search-input {
    font-size: 125%;
}

#search-hits {
    text-align: left;
    margin-top: 1.5em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#search-hits em {
    font-weight: bold;
    background-color: yellow;
}

#search-hits .hit {
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

#search-hits .hit .doc {
    font-size: 95%;
    color: #666;
}

#search-hits .hit .link {
    font-size: 120%;
    font-weight: bold;
}

#search-pagination {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

#search-pagination .page-link {
    padding: 0.5em 0.75em;
    margin: 0.25em;
    font-size: 120%;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 0.25em;
}

#search-pagination .page-link:hover {
    background-color: #ddd;
}

#search-pagination .page-link.active {
    background-color: #ccc;
}