$sp-primary-color: var(--sp-real-link-color);

.sp-real-inspector-control-top-section {
    padding: 0 18px 18px;

    .sp-real-doc-link-button-wrapper {
        width: 100%;
        margin-bottom: 16px;
        margin-top: -10px;
    }

    .sp-real-doc-link-button {
        color: $sp-primary-color;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
        text-decoration: none;

        &:focus {
            outline: none;
            box-shadow: none;
        }
    }
}

.sp-real-block-preview-button {
    color: #FFF;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    background: var(--sp-real-primary-color);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    padding: 0 24px;
    height: 44px;

    &:hover {
        background-color: var(--sp-real-primary-color-hover);
    }

    &:focus {
        box-shadow: none;
        outline: none;
    }

}