/* @define WorkerProfile */
.WorkerProfile {
    display: flex;
    flex-direction: column;
    min-height: 0; /* makes the scroll on the profile body work */
}

.WorkerProfile-body {
    padding: 1rem;
    overflow-y: auto;
}

.WorkerProfile-cardGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem 2rem;
}

.WorkerProfile-nameHeader {
    background: var(--surface-subtle-light);
    border-radius: 0;
}

.WorkerProfile-aiSummaryContent {
    padding: 1rem;
    background: var(--surface-subtle-light);
    border-radius: 0.5rem;
}

.WorkerProfile-aiSectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.WorkerProfile-aiSectionTitle {
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

.WorkerProfile-aiSectionSubheader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.WorkerProfile-aiSectionSubtitle {
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

.WorkerProfile-aiBadge {
    padding: 0.25rem 0.5rem;
}

.WorkerProfile-aiSparklesIcon {
    color: var(--icon-primary);
}

.WorkerProfile-sectionContent {
    padding-left: 3%;
    padding-right: 3%;
    margin-top: 1rem;
}

.WorkerProfile-unlinkedWorkerIcon {
    color: #ccc;
}

.WorkerProfile-unlinkedWorkerIconWrapper {
    align-self: center;
    padding-left: 0.5em;
    padding-top: 1px;
    font-size: 14px;
}

.WorkerProfile-collapsibleHeader {
    cursor: pointer;
}

/* overwriting some Bootstrap non-sense  --> input group appending button styles are weird - temporary fix for bootstrap 4 fixes release. 07/02/2020 LU */
.WorkerProfile-inputGroupText {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px;
}

/* end of overwriting bootstrap non-sense */

.WorkerProfile-inputGroup {
    max-width: 40%;
}

.WorkerProfile-traitsTable {
    margin-bottom: 2rem;
}
