:root {
    --content-width: 75%;
    --top-bar-height: 52px;
    --color-green: rgba(69, 146, 133, 1);
    --color-hovered: #F5F5F5;
    --color-bg: #2e303e;
    --color-bg-summary: #1c1d26;
    --color-top-bar: #25292e;
    --color-line: #8e91ab;
}

html {
    line-height: 1.15;
    scroll-behavior: smooth;
    font-size: 16px;
    color: white;
}

body {
    background-color: var(--color-bg);
    margin: 0;
}

table, th, td {
    border: 1px solid white;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: center;
}

.hidden {
    display: none;
}

.top_bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--top-bar-height);
    background-color: var(--color-top-bar);
    position: fixed;
}
.top_bar_items_container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    width: var(--content-width);
    height: 100%;
}
.top_bar_left{
    flex-basis: 0%;
    flex-grow: 1;
    height: 60%;
    display: flex;
}

.top_bar_logo{
    max-width: 100%;
    object-fit: contain;
}

.top_bar_protoplaster {
    font-size: 16px;
    font-style: bold;
    font-family: Roboto;
    font-weight: 700;
    line-height: normal;
    font-stretch: normal;
}

.top_bar_right {
    flex-basis: 0%;
    flex-grow: 1;
    text-align: right;
    font-size: 14px;
    font-style: Bold;
    font-family: Roboto;
    font-weight: 700;
    line-height: normal;
    font-stretch: normal;
}

.item_list{
    width: 100%;
    padding-top: var(--top-bar-height);
    display: flex;
    flex-direction: column;
}

.item{
    width: var(--content-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    padding-top: 24px;
}

.item_header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    justify-content: space-between;
    margin: 8px;
    width: 100%;
}

.item_header_left{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    justify-content: space-between;
}

.item_header_text {
    color: white;
    margin: 0;
    font-size: 32px;
    text-align: left;
    font-family: Roboto;
    font-weight: 600;
    line-height: normal;
    font-stretch: normal;
}

.item_file_text {
    margin: 0px;
    font-size: 18px;
    text-align: left;
    font-family: Roboto;
    font-weight: 500;
    line-height: normal;
    font-stretch: normal;
}

.item_file_link {
    text-decoration: none;
    color: var(--color-green);
}

.item_file_link:hover {
    text-decoration: underline;
    color: var(--color-hovered);
}

.item_header_separator {
    width:100%; 
    height:1px; 
    background: var(--color-line);
    margin: 8px;
    margin-bottom: 24px;
}

.summary_container {
    width: 100%;
}

.summary{
    display: flex;
    flex-direction: row;
    padding: 10px;
    padding-bottom: 0px;
    overflow: auto;
    background-color: var(--color-bg-summary);
    margin-bottom: 20px;
}

.summary_left {
    margin-top: 2px;
    margin-right: 30px;
    display: flex;
}

.summary_x {
    display: block;
    position: absolute;
}

.summary_right {
}

.summary_title {
    margin: 0;
    font-size: 18px;
    text-align: left;
    font-family: Roboto;
    font-weight: 700;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.summary_button {
    border: none;
    background-color: transparent;
    color: var(--color-green);
    text-align: center;
    font-size: 18px;
    text-align: left;
    font-family: Roboto;
    font-weight: 500;
    line-height: normal;
    font-stretch: normal;
}

.summary_button:hover {
    text-decoration: underline;
    filter: brightness(0) saturate(100%) invert(95%) sepia(74%) saturate(20%) hue-rotate(267deg) brightness(115%) contrast(92%);
}

.summary_close_button {
    border: none;
    background-color: transparent;
    align-self: flex-start;
}

.summary_close_button:hover {
    filter: brightness(0) saturate(100%) invert(95%) sepia(74%) saturate(20%) hue-rotate(267deg) brightness(115%) contrast(92%);
}

.summary_button_container {
    padding-left: 20px;
    display: flex;
}

.summary_button_triangle {
    transform: rotate(270deg);
    margin-left: 8px;
}

.summary_button_triangle_open {
    transform: rotate(0deg);
}

.summary_code {
    color: white;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    line-height: 22px;
    font-stretch: normal;
}
