.usage-example {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.usage-row + .usage-row {
    margin-top: 1rem;
}

.usage-label {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
}

.usage-label span:last-child {
    color: var(--md-default-fg-color--light);
    white-space: nowrap;
}

.usage-progress {
    width: 100%;
    height: 9px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.usage-progress-bar {
    height: 100%;
    background: var(--md-primary-fg-color);
    border-radius: inherit;
}

.usage-progress-bar.limit-reached {
    background: #dc3545;
}

@media screen and (max-width: 600px) {
    .usage-label {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.15rem;
    }
}