:root {
    --textLeft: 14%;
    --imageLeft: 18%;
}

/* Table and Layout consistency */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: fontBody;
    text-transform: uppercase;
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.3);
}
th, td {
    border: 1px solid rgba(175, 215, 255, 0.2);
    padding: 12px;
    text-align: left;
}
th { 
    background-color: rgba(11, 58, 66, 0.5); 
    color: var(--color4);
}
.section-header {
    color: var(--color4);
    margin-top: 30px;
    border-bottom: 1px solid var(--color2);
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
}
.search-box {
    background: rgba(175, 215, 255, 0.1);
    border-left: 4px solid var(--color4);
    padding: 15px;
    margin: 20px 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .search-box {
        padding: 10px;
        margin: 15px 0;
    }
    th, td {
        padding: 8px;
    }
}

/* Video Embeds */
iframe { max-width: 100%; width: 100%; height: 100%; }
div.video.line { height: 30%; display: flex; justify-content: center; align-items: center; width: 100%; }
@media (min-width: 1400px) { div.video.line { height: 50%; } }

/* Cookie-based animation override */
html.no-animation .animation1,
html.no-animation .animation2,
html.no-animation .content,
html.no-animation .postslists {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
}