/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

table {
    width: 80%;
    border-collapse: collapse;
    margin: auto;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
  
th, td {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ddd;
}

th {
  background-color: #82c285;
  color: white;
  font-size: 16px;
}

tr:nth-child(even) {
  background-color: #f2f2f2; 
}

tr:hover {
  background-color: #ddd; 
}

td {
  text-align: center;
  font-size: 14px;
  margin: auto;
}

caption {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

thead {
  background-color: #f4f4f4;
}

tbody {
  background-color: white;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background-color: #333;
  color: white;
  text-align: center;
  line-height: 50px;
  z-index: 1000;
  font-size: large;
}

body {
    padding-top: 70px; 
    padding-bottom: 60px;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    clear: both; 
}

.pagination a {
    color: black;
    display: inline-block; 
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.search-form select,
.search-form input[type="text"],
.search-form input[type="submit"] {
    margin-right: 10px;
    padding: 5px;
    font-size: 16px;
}

th:nth-child(2),
td:nth-child(6) {
    width: 150px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #333; 
    color: white;
    line-height: 60px;
    font-size: xx-large;
    display: flex;
    align-items: center;
}

h1 {
    flex-grow: 1; 
    text-align: center;
    justify-content: space-between;
}

nav.nav-buttons {
    position: absolute; 
    right: 20px;
    display: flex;
    gap: 10px;
}

nav.nav-buttons a button {
    padding: 8px 16px;
    font-size: 16px;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: Arial, sans-serif;
}