.employee-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 16px;
    background-color: var(--blued-light-neutral);
}

.employee-details > :first-child {
    display: flex;
    gap: 10px;
    align-items: center;
}
.employee-details > :first-child > :nth-child(2) {
    flex: 1;
}
.employee-details > :last-child {
    display: flex;
    gap: 25px;
}
.employee-details > :last-child > * {
    flex: 1;
}

.employee-details .avatar {
    height: 62px;
    border-radius: 100%;
}
#edit {
    padding: 5px;
    border-radius: 8px;
    background-color: var(--variable-collection-light-purp);
    cursor: pointer;
}
#edit:hover {
    background-color: var(--variable-collection-light-lemon);
}

.details-entries > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.details-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}