.component-wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    border-bottom: 1px solid red;
}

.component-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;

}

.component-head-left h1 {
    font-size: 2rem;
}

.component-head-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.component-head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.component-supported {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.component-supported-items {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.component-supported-items a {
    padding: 0.5rem 1rem;
    color: var(--main-text-color);
    border: 1px solid var(--border-color);
}

.component-supported-items a:hover {
    opacity: .7;
}

.component-body {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.component-body>div:not(:first-child) {
    border-top: 1px solid red;
}

.component-counter {
    font-size: 1rem;
    color: #666;
}

.component-usage-ids {
    font-size: 0.8rem;
    color: #666;
    word-wrap: break-word;
}
.component-usage h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}
.component-usage-other-site {
    margin-top: 1rem;
}

.component-usage h5 {
    font-size: 1rem;
}

.other-sites-usage h4::after {
    content: ' (click to collapse)';
    font-size: 0.9rem;
    color: #999;
    font-weight: normal;
}
.other-sites-usage.is-collapsed h4::after {
    content: ' (click to expand)';
}
.other-sites-usage.is-collapsed .other-sites-usage-content {
    display: none;
}