@import url("general.css");

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

.content h2 {
    line-height     : 195%;
    text-align      : center;
    width           : 100%;
    font-size       : var(--fcs-FS-h2);
    background-color: var(--fcs-blue);
    color           : whitesmoke;
}

.content p {
    hyphens   : auto;
    text-align: justify;
    font-size : var(--fcs-FS-p-min);
    width     : 80%;
    overflow  : hidden;
}

.innerpagebox {
    padding-top: var(--fcs-header-height);
    width      : 99%;
    min-height : 100vh;
}

.innerpagebox img {
    height   : auto;
    width    : 100%;
    max-width: 300px;
}


.part-title {
    width           : 100%;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    background-color: var(--fcs-blue);
    color           : whitesmoke;
}

.linkbox {
    margin-top     : -27px;
    width          : 100%;
    display        : flex;
    justify-content: space-evenly;
    align-items    : center;
}

.linkbox a {
    text-align      : center;
    width           : 50%;
    color           : var(--fcs-text-blue);
    text-decoration : none;
    background-color: var(--fcs-menue-bg);
    padding         : 5px;
    border-right    : 1px solid var(--fcs-blue);
}

.linkbox a:last-child {
    border-right: 0;
}

.linkbox a:hover,
.linkbox a:active,
.linkbox a.active {
    background-color: var(--fcs-blue);
    color           : whitesmoke;
}

.lights img {
    height: 15px;
    width : auto;
}

.lights img.maximize {
    height: 30px;
    width : auto;
}

.lights td {
    overflow: hidden;
    padding : 5px;
}

.lights colgroup col:first-of-type {
    width: 50%;
}

.lights {
    table-layout   : fixed;
    border-collapse: collapse;
    width          : 90%;
    font-size      : var(--fcs-text);
    border         : 1px solid var(--fcs-blue);
}

.lights tr td:nth-of-type(1) {
    text-align: center;
}

.lights tr td:nth-of-type(2) {
    font-size: var(--fcs-FS-p-min);
}

.lights tbody tr:nth-of-type(odd) {
    border-bottom: 1px solid var(--fcs-blue);
}

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