.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 600px) {
    .responsive-table th, .responsive-table td {
        display: block;
        width: 100%;
    }
}

.w3-container:hover {
    background-color: aqua;
}

.w3-container {
    text-align: center;
}

/*pagination*/

.pagination {
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 7px;
    font-size: 15px;
    color: black;
    text-decoration: none;
}

.pagination a:hover {
    background-color: aqua;
}
