/* Prettify Iframe's Scrollbar */
html {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #008fbf #fff;
}
/* General Body Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
}

h2 {
    font-size: 0.7rem;
    /*font-weight: 500;*/
}

table {
    width: 100%;
    font-size: 1rem;
    border-collapse: collapse;
}

table td {
    padding: 8px 0;
}

table tr {
    border-top: 1px solid #000;
}

table tr:last-of-type {
    border-bottom: 1px solid #000;
}

table tr td:first-of-type {
    font-weight: 800;
    width: 110px;
}

table tr td:nth-of-type(2) {
    padding-right: 20px;
}

#table-13 tr td:first-of-type {
    width: 174px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

img {
    width: 100%;
}

select {
    width: 180px;
    font-size: 0.7rem;
    padding: 6px 8px;
    border-radius: 6px;
    background-color: #FFF;
    color: #000;
}

/* Custom Styles */
#content {
    position: relative;
    margin: 0 auto;
    padding: 5px 10px;
}

#era-container {
    padding: 5px;
}

#era-headline {
    text-align: center;
    text-transform: uppercase;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

#era-headline h1 {
    font-size: 1rem;
    margin: 4px 0;
}

#era-menu {
    display: block;
    gap: 10px;
    margin-bottom: 20px;
}

#era-icon {
    margin-top: 20px;
    margin-bottom: 50px;
}

#era-table {
    margin-bottom: 40px;
}

.era-images {
    margin-top: 20px;
}

.era-images,
.era-tables,
.era-icons {
    display: none;
}

.era-flag-icons {
    width: 25px;
    padding: 0 20px;
}


@media (min-width: 500px) {
    #content {
        padding: 8px 20px
    }

    #era-menu {
        display: flex;
    }

    table tr td:first-of-type {
        width: 150px;
    }

    table tr td:nth-of-type(2) {
        padding-right: 30px;
    }
}

@media (min-width: 600px) {
    #content {
        padding: 0;
    }

    table tr td:first-of-type {
        width: 160px;
    }

    table tr td:nth-of-type(2) {
        padding-right: 40px;
    }
}

@media (min-width: 800px) {
    #content {
        padding: 20px 80px;
    }

    table tr td:first-of-type {
        width: 184px;
    }

    table tr td:nth-of-type(2) {
        padding-right: 60px;
    }

    #table-13 tr td:first-of-type {
        width: 244px;
    }
}