/* - - - Extension install buttons - - - */
.extension-install-btn
{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 15.35rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.extension-install-btn:hover
{
    opacity: 0.92;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    color: inherit;
}
.extension-install-btn--marketplace
{
    background-color: #000;
    color: #fff;
}
.extension-install-btn__logo
{
    width: 100%;
    height: auto;
    max-height: 40px;
    display: block;
    object-fit: contain;
}
.extension-install-btn__label
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 0.3rem;
    line-height: 1;
    text-transform: lowercase;
    white-space: nowrap;
}
.extension-install-btn--openvsx
{
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
}
.extension-install-btn--openvsx svg
{
    width: 100%;
    height: auto;
    max-height: 40px;
    display: block;
}