body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.chart-container {
    /*position: relative;
    width: 100%; */
	width: 100%; /* Breite des Containers auf 100% */
    overflow-x: auto; /* Füge eine horizontale Scrollbar hinzu */
    height: 400px; /* Setze eine feste oder relative Höhe für den Container */
}

canvas {
    max-width: 100%;
    height: 100%; /* Das Canvas nimmt 100% der Containerhöhe ein */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
}

h2 {
    font-size: 18px;
    margin: 10px 0;
}

@media (max-width: 768px) {
    canvas {
        min-width: 100%; /* Für mobile Geräte */
    }
}