html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.container {
    flex: 1;
}

footer {
    background-color: #002147;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}
.description {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 40px; 
}
table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}
table th {
    background-color: #002147;
    color: white;
}
table tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}


#movetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #002147;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#movetop:hover {
    background-color: #0056b3;
}
