.chartjs-render-monitor {
    cursor: crosshair;
}

.chart-section {
    padding: 5px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-section[open] {
    background-color: white;
}

.chart-section summary {
    padding: 15px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    list-style: none;
    transition: background-color 0.3s ease;
}

.chart-section summary:hover {
    background-color: #e9e9e9;
}

.chart-section summary::-webkit-details-marker {
    display: none;
}

.chart-section summary::before {
    content: "▼";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.chart-section[open] summary::before {
    transform: rotate(180deg);
}

.chart-section .chart-container {
    transition: height 0.9s ease;
}

.chartjs-render-monitor .chartjs-plugin-annotation-box {
    transition: all 0.3s ease;
}

.chartjs-render-monitor .chartjs-plugin-annotation-box:hover {
    opacity: 0.7 !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}