.roles {
    display: grid;
    grid-template-rows: 40px 1fr;
    min-height: 0;
    color: var(--whispr-light-grey);
}

.roles .search-container input {
    width: calc(100% - 2em - 10px);
}

.role-list-roles {
    display: block;
}

.role-list-roles .role-list-item {
    color: var(--whispr-light-grey);
    font-size: 12px;
    line-height: 20px;
    cursor: pointer;
    box-sizing: border-box;
}

.role-list-roles .role-list-item:hover {
    background: var(--whispr-darker-grey);
}

.role-list-roles .role-list-item.selected {
    color: var(--whispr-white) !important;
    background: var(--whispr-dark-grey);
    transition: all 0.2s;
}

.role-list-roles .role-list-item.selected:hover {
    background: #0e437c;
    transition: all 0.2s;
}
