.svg-container {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    vertical-align: top;
    overflow: hidden;
}

.svg-content {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.tick text {
    font-family: var(--bs-body-font-family);
}
.axis-label {
    font-family: var(--bs-body-font-family);
}

.ovtooltip {
    position: absolute;
    text-align: center;
    padding: 10px;
    background: #303c48;
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    pointer-events: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.ovtooltip:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.watooltip {
    position: absolute;
    text-align: center;
    padding: 10px;
    background: #303c48;
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    pointer-events: none;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    z-index: 9999;
}

.watooltip:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.horizontal-line {
    stroke: rgba(0, 0, 0, 0.4);
    stroke-width: 0.5;
    stroke-dasharray: 5, 5;
}
