.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

/*.styled-table thead tr {*/
/*    background-color: #009879;*/
/*    color: #ffffff;*/
/*    text-align: left;*/
/*}*/

/*.styled-table th,*/
/*.styled-table td {*/
/*    padding: 12px 15px;*/
/*    text-align: center;*/
/*}*/

/*.styled-table tbody tr {*/
/*    border-bottom: 1px solid #dddddd;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.styled-table tbody tr:nth-of-type(even) {*/
/*    background-color: #f3f3f3;*/
/*}*/

/*.styled-table tbody tr:last-of-type {*/
/*    !*border-bottom: 2px solid #009879;*!*/
/*}*/

/*.styled-table tbody tr:hover {*/
/*    background-color: #f5f5f5;*/
/*    cursor: pointer;*/
/*}*/

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

.pagination button {
    padding: 8px 16px;
    border: none;
    background-color: #cccccc;
    color: #000000;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination button:hover:not([disabled]) {
    background-color: rgb(0,102,204);
    color: white;
}

.pagination button[disabled] {
    background-color: #cccccc;
    cursor: not-allowed;
}

.pagination span {
    font-size: 14px;
    color: #ffffff;
} 