.CollaboratorPage {
    background-color: var(--white);
    border-radius: 3px;
    margin-bottom: 40px;
    min-height: 700px;
    padding: 25px;
    width: 100%;

    &-header {
        align-items: center;
        display: flex;
        margin-bottom: 24px;
    }

    &-collaborator-internal-id {
        color: var(--gray-600);
        display: inline-block;
        font-weight: 500;
        margin-bottom: 8px;
    }

    &-collaborator-name-container {
        align-items: center;
        display: flex;
    }

    &-collaborator-name {
        margin-bottom: 0;

        &-loading {
            width: 250px;
        }
    }

    &-collaborator-description {
        font-size: 14px;
        margin-top: 8px;
    }

    &-tabs-container {
        margin-bottom: 24px;
        position: relative;
    }

    &-settings-button {
        background: none;
        border: 0;
        color: var(--gray-600);
        margin-left: 12px;
        padding: 0px;

        &:hover {
            color: var(--gray-900);
        }

        .Glyph {
            fill: currentColor;
        }
    }

    &-recipient-info {
        align-items: center;
        color: var(--gray-600);
        display: flex;
        flex-grow: 1;
        font-weight: 500;
        justify-content: flex-end;
        text-transform: uppercase;
    }

    &-recipient-name {
        color: var(--gray-800);
        margin-left: 0.5rem;
    }

    &-recipient-status {
        align-items: center;
        display: flex;
        margin-right:20px;

        .Checkmark {
            fill: var(--green);
            margin-right: 10px;
        }
    }

    &-recipient-delete-button {
        padding: 2px 3px 2px 3px;
    }
}
