body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
}

.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.chart-container {
    flex-grow: 1;
    position: relative;
}

canvas {
    width: 100%;
    height: calc(100% - 80px); /* Adjust height to account for the title */
}

.tooltip {
    position: absolute;
    top: 10%;
    left: 10%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 5px;
    pointer-events: none;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    width: 200px; /* Fixed width for the tooltip */
    height: 160px
}

.tooltip table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

.tooltip th,
.tooltip td {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
}