main {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
    padding: 2em 1em;
}

a {
    text-decoration: none;
}

.nocontent-announcement {
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 1em;
}

table {
    border-collapse: separate;
    border: 1px solid #dddddd;
    border-radius: 6px;
    border-spacing: 0;
    width: 100%;
}

table colgroup col:nth-child(1) {
    width: 8em;
}

table colgroup col:nth-child(3) {
    width: 8em;
}
table colgroup col:nth-child(4) {
    width: 5em;
}

table tr th {
    background: #f2f2f2;
    border-bottom: 1px solid #dddddd;
    text-align: left;
    padding: 12px;
    font-size: 14px;
}

table tr th:first-child {
    border-radius: 6px 0 0 0;
}

table tr th:last-child {
    border-radius: 0 6px 0 0;
}

table tr td {
    border-bottom: 1px solid #b2b2b2;
    padding: 12px;
    font-size: 16px;
    vertical-align: text-top;
}

table tr:last-child td{
    border: none;
}

table .important td {
    font-weight: bolder;
}

.contentDiv {
    background-color: #fff;
    padding: 16px 24px;
    margin-bottom: 1em;
    position: relative;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--default-border-color);
}

.ifc-specification label {
    font-size: 16px;
    font-weight: bold;
    line-height: 160%;
    font-family: "Roboto Mono";
    width: 100%;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
    display: flex;
}

.ifc-specification .expandable {
    color: var(--text-color);
}

.ifc-specification .stub {
    color: #ebebeb;
}

.ifc-specification label .expand-icon {
    rotate: 0deg;
    transition: 0.2s;
    margin-bottom: 2px;
    rotate: 180deg;
}

.ifc-specification label div {
    position: relative;
}

.expand-tooltip {
    width: 80px;
    margin-left: -40px;
}

.collapse-tooltip {
    width: 80px;
    margin-left: -40px;
}

.reveal-specification-button:not(:checked) ~ label div:hover .expand-tooltip {
    visibility: visible;
    opacity: 1;
}

.reveal-specification-button:checked ~ label div:hover .collapse-tooltip {
    visibility: visible;
    opacity: 1;
}

.reveal-specification-button:checked ~ label {
    color: var(--urs-red);
}

.reveal-specification-button:checked ~ label .expand-icon {
    rotate: 0deg;
}

.ifc-specification label a {
    position: relative;
    margin-right: 1.5em;
    margin-left: 1em;
}

.ifc-specification label a:hover img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(48%) saturate(7497%) hue-rotate(345deg) brightness(84%) contrast(110%);
}

.ifc-specification label a span {
    width: 140px;
    margin-left: -70px;
}

.ifc-specification label a:hover span {
    visibility: visible;
    opacity: 1;
}

.ifc-specification .specification-details {
    margin-top: 1em;
    display: none;
}

.reveal-specification-button:checked ~ .specification-details {
    display: block;
}

.tooltip-text {
    visibility: hidden;
    background-color: #002b6b;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    dont-family: "Roboto";
    font-weight: normal;
    line-height: 150%;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #002b6b transparent transparent transparent;
}

#options .link {
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    margin-left: 1em;
}
