/* Your existing rule */
.forecastChart {
    width: 240px !important;
    height: 120px !important;
}

/* Add all this BELOW */
.forecast-box {
    width: 240px;            /* match the chart width */
    margin: 0 auto;
}

.forecast-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin-bottom: 4px;
}

.range-title {
    font-size: 10px;
    color: #444;
    line-height: 1.2;
}

.range-total {
    font-size: 14px;
    font-weight: bold;
    margin-top: 2px;
    line-height: 1.2;
}


.sknowed-watermark {
    position: relative;
    overflow: hidden;
}

.sknowed-watermark::before {
    content: "sknowed";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 50px;                 /* fits inside 240x120 */
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);       /* faint grey */
    
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    z-index: 0;
}


.forecast-box {
    position: relative;
    z-index: 2;   /* above watermark */
}

.forecast-groups, .forecastChart {
    position: relative;
    z-index: 2;
}
