.club-line-graph-grid {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas: 
    'ylabel lineGraph'
    'empty  xlabel' ;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: 5px 10px;
    padding-right: 15px;
}

.club-line-graph-label p {
    margin-bottom: 0;
    color: var(--club-stroke-strong);
}

.club-line-graph-xlabel-container {
    position: relative;
    grid-area: xlabel;
}

.club-line-graph-xlabel {
    display: grid;
    align-items: center;
    justify-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    
    opacity: 0;
    /* hide while it hasnt loaded */
}

.club-line-graph-ylabel {
    grid-area: ylabel;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.club-line-graph {
    position: relative;
    grid-area: lineGraph;
}

.club-line-bg {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.club-line-dots {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-items: center;

    opacity: 0; 
    /* hide while it hasnt loaded */
}

.club-line-rows {
    display: grid;
    border-bottom: 1px solid var(--club-stroke-weak);
}

.club-line-rows * {
    border-left: 1px solid var(--club-stroke-weak);
}

.club-line-rows *:last-child {
    border-right: 1px solid var(--club-stroke-weak);
}

.club-line-dot {
    width: 10px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--club-primary);
    transition: transform 0.3s ease;
}

.club-line-dot-container {
    transform: translateY(5px);
}

.club-line-trace {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1, -1);
}

.club-line-polyline {
    fill: none;
    stroke-width: 2px;
    stroke: var(--club-primary);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: all 0.5s ease;
}