/* style.css */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; 
    overflow-x: hidden;
}

#charts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12vw; /* Space for the 'Peak' overflows */
    padding: 10vw;
    background-color: #1a1a1a;
}

.chart-wrapper {
    position: relative;
    width: 22vw; 
    height: 22vw;
    min-width: 250px;
    min-height: 250px;
    overflow: visible;
}

canvas {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200% !important;
    height: 200% !important;
    pointer-events: none;
    /* Optional: Arcade glow effect */
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.4));
}