* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #114232;
    color: #f5f5f5;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-height: 100vw;
}

/* HEADER */

.header {
    /* background: #1b1b1b; */
    /* border-bottom: 1px solid #222; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.header .wrapper{
}

.header-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-row img {
    max-height: 128px;
    width: auto;
}

.header-metric-row {
    margin-top: 10px;
    text-align: center;
}

.metric-label-header {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

/* MAIN / CHART */

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100vw - 256px);
}

.chart-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
}

.chart-container {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    background: #114232; /* Chart-Hintergrund außenrum */
    border-radius: 8px;
    overflow: hidden;
}

.chart-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* FOOTER */

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
    border-top: 1px solid #222;
    height: 56px;
}

.footer img {
    height: 20px;
    vertical-align: middle;
}
