body {
    background: linear-gradient(to left, #004293 0%, #00142D 100%);
    display: grid;
    margin: 0;
    grid-template-columns: 50vw 50vw;
    grid-template-rows: 90vh 10vh;
    grid-template-areas:
        "window-left window-right"
        "footer footer";
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Chakra Petch', sans-serif;
}

/* Widgets */
.window-left {
    grid-area: window-left;
}

.window-right {
    /* grid-area: window-right; */
    margin-bottom: 4vh;
}

.skewX {
    transform: skewX(-5deg);
}

.deskewX {
    transform: skewX(5deg);
}

.widgetBox {
    display: flex;
    justify-content: center;
    width: 95%;
    height: 100%;
    /* opacity: 0.2; */
    transform: skewX(-5deg);
    /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4); */
    margin-top: 2.5rem;
}
.widgetContent {
    width: 95%;
    /* Control gap between two main widgets */
    transform: skewX(5deg);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 1.5em;
}

.inner-box {
    /* border-bottom-right-radius: 10px; */
    transform: skewX(-5deg);
    transform-origin: top right;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /* width: 100%; */
    /* height: 100%; */
}

.inner-content {
    transform: skewX(5deg);
    padding: 20px;
    color: #00142D;
}


#slideshow {
    text-align: center;
    min-width: 0; /* Allows shrinking */
    min-height: 0; /* Allows shrinking */
    margin: 1rem;
    >img {
        width: 100%;
        height: 90%;  /* Adjusted for better spacing */
        object-fit: contain;
        margin-top: 5%; /* Adjusted for better spacing */
        margin-bottom: 5%;
    }
}


.tableGrid {
    transform: skewX(-5deg);
    margin-top: 2vw;
}

#tabelleBox1,
#tabelleBox2 {
    background: linear-gradient(to right, #00142D, #004293);
    color: white;
    margin: 1vw 3vw 0vw 3vw;
    padding: 1vw 2vw 2vw 2vw;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.tableBoxContent {
    transform: skewX(5deg);
}

/* Table styling */
table {
    border-collapse: collapse;
    width: 100%;
}

#tableHead th {
    padding-bottom: 10px;
    text-align: left;
    border-bottom: 2px solid white;
    font-weight: 600;
    font-size: 1.4em;
    /* Schriftgröße Überschriften */
}

tbody tr:first-child td {
    padding-top: 8px;
    /* oder mehr nach Geschmack */
}

tr {
    font-size: 1.1em;
    /* Schriftgröße Einträge */
    padding: 10px;
    text-align: left;
}




/* Deko */
.backgroundBox {
    position: fixed;
    bottom: 0px;
    z-index: -2;
    /* In den Hintergrund */
}

#backgroundBox1 {
    left: 0px;
    background: linear-gradient(to top, transparent, #00142D);
    width: 25%;
    height: 50vh;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

#backgroundBox2 {
    right: 0px;
    background: linear-gradient(to right, transparent, #00142D);
    width: 55%;
    height: 97vh;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0% 100%);
}

/* Überschrift */


/* Footer styling */
.footer {
    grid-area: footer;
    /* height: 100%;
    width: 100%; */
    color: white;
    font-size: 9vh;
    font-weight: semi-bold;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
/* Stuff from Template */
.headline-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    transform: skewY(-3deg);
    margin-left: 40px;
    --pos1x: 10px;
    --pos1y: 10px;
    --pos2x: -10px;
    --pos2y: -10px;
    --white: #ffff
        /* TODO */
}

.headline {
    position: relative;
    display: inline-block;
    padding: 0rem 0.4rem;
    background: transparent;
    border-radius: 3px;
    color: #fff;
    font-size: 8vh;
    font-weight: bold;

}

.headline-upper {
    background: linear-gradient(45deg, #f29a00 0%, #d80bbc 100%);
}

.headline-lower {
    background: linear-gradient(225deg, #f29a00 0%, #d80bbc 100%);
}

#time {
    position: absolute;
    width: 25%;
    height: 15%;
    top: 0;
    right: 0;
    color: white;
    font-size: 6vh;
}