@import url("general.css");

/* Content */
.content {
    display        : flex;
    flex-direction : column;
    justify-content: start;
    align-items    : center;
    gap            : 30px;
    overflow-y     : hidden;
    width          : 100%;
    height         : auto;
}

.content h1 {
    line-height  : 115%;
    font-size    : 25px;
    margin-bottom: 15px;
}

.content p {
    text-align : justify;
    width      : 80%;
    overflow   : hidden;
    line-height: 1.5em;
    hyphens    : auto;
}

.content img {
    width : 200px;
    height: auto;
}

.formulatable {
    table-layout   : fixed;
    border-collapse: collapse;
    width          : 90%;
    text-align     : center;
}

.formulatable col {
    width: 50%;
}

.formulatable tr {
    height: 50px;
}

.formulatable td {
    font-weight : bold;
    padding     : 5px 8px;
    overflow    : hidden;
    border-right: 2px solid var(--fcs-menue-item);
    border-left : 0;
}

.formulatable tbody tr td:last-of-type {
    border-right: 0;
}

.formulatable tbody tr:nth-of-type(even) {
    background-color: var(--fcs-menue-item);
}

.formulatable tbody tr:nth-of-type(2) td:first-of-type {
    background-color: rgb(126, 158, 207);
    font-weight     : bold;
    color           : whitesmoke;
}

.formulatable tbody tr:nth-of-type(2) td:last-of-type {
    background-color: rgb(80, 113, 161);
    font-weight     : bold;
    color           : whitesmoke;
}

.formulatable tbody tr:nth-of-type(2) {
    font-size: var(--fcs-FS-h3);
}

td.rowtitle {
    color           : whitesmoke;
    font-size       : var(--fcs-FS-h3);
    background-color: var(--fcs-blue);
}