body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    height: 50px;
}

header h1 {
    color: #0044d8;
    font-size: 1.5rem;
    margin: 0;
}

.container {
    padding: 2rem;
}

.buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.buttons button {
    padding: 0.75rem 1.5rem;
    background-color: #0044d8;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
}

.buttons button:hover {
    background-color: #003bb5;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    overflow-x: auto;
    display: block;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 1rem;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

#user-input {
    display: none;
    margin-bottom: 2rem;
}

#user-input input {
    padding: 0.5rem;
    width: calc(100% - 2rem);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

#user-input button {
    padding: 0.5rem 1rem;
    background-color: #0044d8;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

#pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

#pagination button {
    padding: 0.5rem 1rem;
    background-color: #0044d8;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin: 0 0.25rem;
}

#pagination button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

#filter {
    margin-bottom: 2rem;
}

#filter label {
    margin-right: 0.5rem;
}

#filter input {
    margin-right: 1rem;
}

#download-button {
    padding: 0.5rem 1rem;
    background-color: #0044d8;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}
/* Existing styles */

#filter, #items-per-page-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

#filter label, #items-per-page-container label {
    margin-right: 0.5rem;
    font-weight: bold;
    color: #333;
}

#filter input, #items-per-page-container select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    margin-right: 1rem;
}

#filter button, #items-per-page-container button {
    padding: 0.5rem 1rem;
    background-color: #0044d8;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#filter button:hover, #items-per-page-container button:hover {
    background-color: #003bb5;
}

@media (max-width: 768px) {
    #filter, #items-per-page-container {
        flex-direction: column;
        align-items: flex-start;
    }

    #filter label, #items-per-page-container label {
        margin-bottom: 0.5rem;
    }

    #filter input, #items-per-page-container select {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    #filter button, #items-per-page-container button {
        width: 100%;
    }
}
