@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;
}

.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          : 99%;
    text-align     : left;
}

.formulatable col:first-of-type {
    width: 30%;
}

.formulatable col:last-of-type {
    width: 70%;
}

.formulatable:nth-of-type(4) col:first-of-type {
    width: 28%;
}

.formulatable:nth-of-type(4) col:last-of-type {
    width: 62%;
}

.formulatable td {
    padding : 5px 6px;
    overflow: hidden;
    hyphens : auto;
    border  : 2px solid var(--fcs-menue-item);
}

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

td.rowtitle {
    font-weight     : bold;
    color           : whitesmoke;
    font-size       : var(--fcs-FS-h3);
    background-color: var(--fcs-blue);
    border          : 2px solid var(--fcs-blue);
}

colgroup.numbertable col:first-child {
    width: 120px;
}

colgroup.numbertable col:nth-child(2) {
    width: calc(20% - 120px);
}

colgroup.numbertable col:nth-child(3) {
    width: calc(20% - 120px);
}

colgroup.numbertable col:nth-child(4) {
    width: calc(20% - 120px);
}

colgroup.numbertable col:nth-child(5) {
    width: calc(20% - 120px);
}

span.bold {
    font-weight: bold;
}

colgroup.windtable col:first-child {
    width: 130px;
}

colgroup.windtable col:nth-child(2) {
    width: calc(100% - 130px);
}

tbody.winddata tr:nth-of-type(2) td,
tbody.winddata tr:nth-of-type(3) td {
    text-align: center;
    padding   : 10px 0;
}

input {
    display      : inline;
    width        : 75px;
    margin-right : 2px;
    font-family  : Arial, Helvetica, sans-serif;
    font-size    : var(--fcs-p-min);
    border       : 1px solid rgb(158, 158, 158);
    outline-style: flat;
    padding      : 2px;
    margin-top   : 2px;
    border-radius: 3px;

}

.exact {
    color    : rgb(85, 86, 87);
    font-size: 13px;
}

.result {
    margin-right: 5px;
}

ul {
    width              : 100%;
    list-style-type    : "► ";
    list-style-position: outside;
}

ul li {
    margin-left: 20px;
    text-align : left;
    font-weight: bold;
    padding    : 5px;
}

span.bold {
    font-weight: bold;
}