*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}

header{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

table{
    margin: 0 auto;
    margin-top: 20px;
    table-layout: fixed;
    overflow: scroll;
}

table, th, td {
    border: 2px solid black;
    border-collapse: collapse;
}



tr th {
    width: 100px;
    position: sticky;
}

tbody tr:hover {background-color: #D6EEEE;}

td{
    padding-inline: 8px;
    text-align: center;
}

a{
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.chart{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;

}

.container{
    animation: modalFadeIn ease 0.3s;
    position: relative;
}

.open{
    display: flex;
    z-index: 10;
}


@keyframes modalFadeIn{
    from{
        opacity: 0;
        transform: translateY(-140px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.option{
    align-items: center;
    justify-content: center;
    text-align: center;
}

button{
    padding: 4px 10px;
    margin: 4px;
}

.choosen{
    background-color: #D6EEEE;
    font-size: 14px;
    font-weight: 550;
}