body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

h1 {
    text-align: center;
    color: #007BFF;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

th {
    background-color: #007BFF;
    color: #fff;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#search {
    margin-top: 10px;
    margin-bottom: 10px;;
    padding: 10px;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

a.button:hover {
    background-color: #0056b3;
}

.table-scrollable {
    overflow-y: auto;
    overflow-x: auto;
    padding-bottom: 20px;
}

.dataTables_wrapper .dataTables_filter {
    float: left;
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
}