/* Transparent overlay for dummy text */
.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    color: #84751b;
    font-weight: bold;
    text-align: center;
    backdrop-filter: blur(.5px);
    pointer-events: none; /* allows clicking through */
}

.chart-overlay-big {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
    color: #aea25e;
    font-weight: bold;
    text-align: center;
    backdrop-filter: blur(.5px);
    pointer-events: none; /* allows clicking through */
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    rotate: calc(0deg);
}