body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f9fa;
    margin: 0;
    padding: 20px;
}
.table-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow-x: auto;
    padding: 24px;
    max-width: 100%;
    margin: auto;
}
.table-container h1{
    font-size: 1.5rem;
    color: #004c74;
    text-align: center;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
th, td {
    padding: 12px 16px;
    text-align: left;
}
th {
    background: #f1f3f6;
    color: #333;
    font-weight: 700;
    border-bottom: 2px solid #e3e7ed;
}
tr {
    border-bottom: 1px solid #e3e7ed;
}
tr:last-child {
    border-bottom: none;
}
td {
    color: #444;
}

/* Striped rows */
tbody tr:nth-child(even) {
  background-color: #f7f9fa;
}

/* Row hover effect */
tbody tr:hover {
  background-color: #e3e7ed;
  transition: background 0.2s;
}

/* Responsive Styles */
@media (max-width: 700px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }
    thead tr {
        display: none;
    }
    tr {
        margin-bottom: 16px;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.03);
        border: none;
        padding: 0 0 8px 0;
    }
    td {
        padding: 10px 12px;
        position: relative;
        border: none;
        border-bottom: 1px solid #e3e7ed;
        width: 100%;
        box-sizing: border-box;
    }
    td:last-child {
        border-bottom: none;
    }
    td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #888;
        display: block;
        margin-bottom: 4px;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 24px 0 0 0;
    gap: 4px;
    color: #0077cc;
}
.pagination a {
    min-width: 30px;
	margin: 0 2px;
	padding: 0.3em 0.64em 0.43em 0.64em;
    text-align: center;
	background-color: #0077cc;
	text-decoration: none;
	color: #fff;
    /*-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);*/
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-border-radius: .125rem;
    border-radius: .25rem;
}
.pagination a:hover, .pagination a:active {
	padding: 0.3em 0.64em 0.43em 0.64em;
	margin: 0 2px;
	background-color: #adadad;
	color: #fff;
}
.pagination a.current{
    color: #0077cc;
    background: #f1f3f6;
    font-weight: bold;
}