#searchForm {

}

#searchForm p {

}

#searchInput {
    width: 60%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

#searchResults {
    margin-top: 0;
}

#searchResults h4 {
    margin-top: 2rem;
    margin-bottom: -0.5rem;
}

#searchResults h4:first-of-type {
    margin-top: 0;
}

#searchFilters {
    max-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#searchFilters label {
    display: inline-block;
    white-space: nowrap;
    margin-right: 1rem;
}

#searchButtonWrapper {

}

#resultsMessage {
    margin-top: 2rem;
    font-weight: 600;
}

#loadingIndicator {
    display: none; /* Hidden by default */
    text-align: left;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #555;
}

#loadingIndicator p i {
    margin-right: 0.5rem;
}

#paginationControls a::after {
    content: none;
}

#paginationControls {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; /* First | Previous | Center (Page) | Spacer | Next */
    margin-top: 20px;
    align-items: center; /* Vertically align items in the middle */
    text-align: center; /* Center text within the grid container */
}

#paginationControls #firstPageBtn {
    margin-right: 15px; /* Add space between First and Previous */
    text-align: left; /* Align text to the left within its cell */
}

#paginationControls #prevPageBtn {
    text-align: left; /* Align text to the left within its cell */
}

#paginationControls #nextPageBtn {
    text-align: right; /* Align text to the right within its cell */
}
