body {
    margin: 0;
    height: 100%;
    padding: 20px;
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Dashboard Grid Layout Styles */
.dashboard-container {
    max-width: var(--dashboard-max-width);
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    display: grid;
    grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr 1fr;
    }
    .dashboard-container .w-100 {
        grid-column: span 2;
    }
}

.graph-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.graph-header {
    background: white;
    padding-bottom: 20px;
}
.graph-header.twocols {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
}
.graph-header.twocols .controls {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.graph-header.twocols .controls .lod-selector {
    align-items: flex-end;
}

.graph-content {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.controls-row.graph-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;

    position: sticky;
    top: 10px;
    z-index: 10;
    background: #fffa;
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 768px) {
    .controls-row.graph-container {
        position: relative;
    }
}