.search-field {
    padding: 10px;
    width: 300px;
    margin-right: 10px; /* Adjust the right margin as needed */
    display: block; /* Make search field block level to add margin below */
    margin-bottom: 10px; /* Add margin-bottom for spacing between fields */
}

label {
    display: block;
    margin-bottom: 5px; /* Add space between label and input field */
    font-weight: bold;
}

.search-submit {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block; /* Ensure the button is block level */
    margin-top: 10px; /* Add margin-top to create space from search field */
}

.search-submit:hover {
    background-color: #005177;
}

.print-image,
.download-image {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
}

.print-image:hover,
.download-image:hover {
    background-color: #005177;
}

.error-message {
    text-align: center;
    color: red;
}
