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

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
    color: #333;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.control-group {
    display: flex;
    flex-direction: column;
}

.control-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.control-group input,
.control-group select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#searchInput {
    width: 300px;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #d0d0d0;
    cursor: pointer;
    color: #333;
}

th:hover {
    background-color: #c0c0c0;
}

tr:hover {
    background-color: #f5f5f5;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.pagination button:hover {
    background-color: #f4f4f4;
}

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

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #d0d0d0;
    border-radius: 4px;
    color: #555;
}
