.Block-Bar-Graph {
    max-width: 100%;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f2f5f5;
    border: 1px solid #e0e4e4;
    border-radius: 8px;
    box-sizing: border-box;
}

.Block-Bar-Graph .Bar-Graph-Title {
    margin: 0 0 1rem 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #355195;
    text-align: center;
}

.Block-Bar-Graph .Bar-Graph-Canvas-Wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 400px;
    width: 100%;
    gap: 0.5rem;
}

.Block-Bar-Graph .Bar-Graph-Y-Label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #355195;
    padding: 0 0.5rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.Block-Bar-Graph .Bar-Graph-Canvas-Inner {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 100%;
}

.Block-Bar-Graph .Bar-Graph-Empty {
    color: #666;
    text-align: center;
    padding: 2rem;
    font-style: italic;
    font-family: 'Source Sans Pro', sans-serif;
}