:root *{
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title-container{
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-container {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.button-primary,
.button-secondary {
    display: block;
    width: fit-content;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    padding: 0.4em 1em;
    border: none;
    border-radius: 5px;
}

.button-primary {
    background-color: #115083;
    color: #d5e3ff;
}

.button-primary:hover {
    background-color: #155d99;
}

.button-secondary {
    background-color: #f2f2f2;
    color: #333;
}

.button-secondary:hover {
    background-color: #ddd;
}

h1 {
    font-size: 3.2rem;
    color: #333;
    margin: 10px auto;
    text-align: center;
}

h2 {
    font-size: 2.4rem;
    color: #444;
}

.table-container {
    margin-top: 30px;
}

.fig-table {
    margin: 20px auto;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
}

table {
    border-collapse: collapse;

}

th, td {
    /*width: 20ch;*/
    padding: 0.6em;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.cellType-index{
    /*width: 5ch;*/
    text-align: right;
}

.cellType-num{
    /*width: 10ch;*/
    text-align: right;
}

.cellType-date{
    /*width: 30ch;*/
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

tr:hover {
    background-color: #f5f5f5;
}

@media screen and (max-width: 600px) {
    body{
        line-height: normal;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
        margin: revert;
    }

    table{
        table-layout: fixed;
    }
}