

.table-fill {
    background: white;
    border-radius:3px;
    border-collapse: collapse;
    margin: auto;
    padding:5px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: float 5s infinite;
}
   
th {
    color:#e0e7ed;
    background:#1b1e24;
    border-bottom:4px solid #9ea7af;
    border-right: 1px solid #343a45;
    font-size:23px;
    font-weight: 100;
    padding:5px;
    text-align:left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    vertical-align:middle;
}
  
th:first-child {
    border-top-left-radius:3px;
}
   
th:last-child {
    border-top-right-radius:3px;
    border-right:none;
}
    
tr {
    border-top: 1px solid #C1C3D1;
    border-bottom: 1px solid #C1C3D1;
    color:#373a4b;
    font-size:16px;
    font-weight:normal;
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
   
tr:hover td {
    background:#dcdcde;
    color:black;
}
   
tr:first-child {
    border-top:none;
}
  
tr:last-child {
    border-bottom:none;
}
   
tr:nth-child(odd) td {
    background:#EBEBEB;
}
   
tr:nth-child(odd):hover td {
    background:#dcdcde;
}
  
tr:last-child td:first-child {
    border-bottom-left-radius:3px;
}
   
tr:last-child td:last-child {
    border-bottom-right-radius:3px;
}

.title{
    color: black;
    font-weight: bold;
}
   
td {
    background:#FFFFFF;
    padding:7px;
    text-align:left;
    vertical-align:middle;
    font-weight:300;
    font-size:18px;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
    border-right: 1px solid #C1C3D1;
}
  
td:last-child {
    border-right: 0px;
}
  
th.text-left {
    text-align: left;
}
  
th.text-center {
    text-align: center;
}
  
th.text-right {
    text-align: right;
}
  
td.text-left {
    text-align: left;
}
  
td.text-center {
    text-align: center;
}
  
td.text-right {
    text-align: right;
}

td > a{
    text-decoration: underline;
}


table{
    overflow: scroll!important;
}

.document-button{
    width: 200px;
    background-color: rgb(128, 64, 0);
    padding: 7px;
    color: white;
    font-weight: 400;
    border-radius: 5px;
    display: block;
    text-align: center;
    margin-left: calc(50% - 100px);
}

.document-button:hover{
    background-color: rgb(164, 82, 0);
}

.document-button > i{
    margin-right: 10px;
}


@media screen and (max-width: 1310px){
    .content{
        position: absolute;
        top: 100px;
        width: 100vw;
        left: 0;
        overflow: scroll;
        padding-bottom: 100px;
    }

    .inner-content{
        margin-left: 10vw;
        width: 80vw;
    }
    
    table{
        position: relative;
        width: 100%!important;
        overflow: hidden;
    }

}

.medal{
    font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
    color:#b38335;
}

.border{
    width: auto;
    display: inline-block;
    border: 2px solid #b38335;
    padding: 3px;
    padding-bottom: 1px;
    border-radius: 2px;
}

.pb-content{
    margin-left: 5%;
    width: 90%;
}

.document-button{
    width: 200px;
    background-color: rgb(128, 64, 0);
    padding: 7px;
    color: white;
    font-weight: 400;
    border-radius: 5px;
    display: block;
    text-align: center;
    margin-left: calc(50% - 100px);
}

.document-button:hover{
    background-color: rgb(164, 82, 0);
}

i{
    margin-right: 10px;
}


.container {
    /* max-width: 700px; */
    width: 100%;
}

.year {
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.year:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.year-header {
    padding: 1rem;
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.year-header::after {
    content: "+";
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.year.active .year-header::after {
    content: "–";
    transform: rotate(180deg);
}

.year-content {
    max-height: 0;
    overflow-x: scroll;
    background: #f9f9f9;
    padding: 0 1rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.year.active .year-content {
    padding: 1rem;
    max-height: 50000px;
    overflow-x: scroll;
}

.problems {
    margin: 0.5rem 0 1rem;
    line-height: 1.6;
}

a.pdf-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #222;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

a.pdf-link:hover {
    background: #222;
    color: #fff;
}