.cx-scorecard-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cx-scorecard-share-toolbar {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 12px;
}

.cx-scorecard-share-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.cx-scorecard-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--cx-primary-border, #b9cede);
    border-radius: 6px;
    background: var(--cx-primary, #385c7b);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.cx-scorecard-share-button:hover,
.cx-scorecard-share-button:focus-visible {
    background: #234863;
    border-color: #234863;
    color: #fff;
}

.cx-scorecard-share-button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.cx-scorecard-share-button .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.cx-scorecard-share-status {
    max-width: 220px;
    color: var(--cx-muted, #65788a);
    font-size: 11px;
    line-height: 1.35;
}

@media (max-width: 640px) {
    .cx-scorecard-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .cx-scorecard-share-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cx-scorecard-share-toolbar {
        justify-content: stretch;
    }

    .cx-scorecard-share-button {
        flex: 0 0 auto;
    }
}
