body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 20px;
    padding: 20px;
}

h2 {
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#results table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

#results th, #results td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#results th {
    background-color: #007BFF;
    color: white;
}

/* Dedicated styling for the results count row */
.result-count-row {
    background-color: white !important;
    color: black !important;
    font-size: 0.9em !important;
    font-weight: normal !important;
    text-align: left !important;
    padding: 3px !important;
    border: none !important;
}

#results tr:nth-child(even) {
    background-color: #f2f2f2;
}

#results tr:hover {
    background-color: #ddd;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
