.bartimegraph {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    padding-bottom: 45px;
    width: 100%;
}

.bartimegraph .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bartimegraph .title .title-text {
    font-family: "Metropolis Semi Bold";
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.3px;
    color: #4b4a4a;
}

.bartimegraph-canvas-container {
    width: calc(50vw - 100px);
    height: calc(50vw - 200px);
    max-height: 300px;
    max-width: 800px;
    align-self: center;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 #dff4ff;
}
.bartimegraph-canvas-container .charts {
    width: 100%;
    height: 100%;
}

/* DARK MODE */
.dark .bartimegraph {
    background-color: #1f2120;
    box-shadow: none;
}
.dark .bartimegraph .title .title-text {
    color: #ffffff;
}
.dark .bartimegraph-canvas-container {
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bartimegraph-canvas-container {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .bartimegraph-canvas-container {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
}
