.companies-list-container {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-extra-large);
}

.companies-list {
    display: flex;
    flex-direction: column;
}

.companies-list__company {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: var(--spacing-default);
    box-sizing: border-box;


    &:hover {
        background-color: var(--primary-color);
    }
    &:after {
        content: none;
    }
}

.company-properties {
    display: flex;
    align-items: center;
}

.company__property-separator {
    margin: 0 var(--spacing-default);
}

.adviseur-table {
    width: 100%;
}

    .adviseur-table tr:nth-child(even) {
        background-color: #FAF9F2; /* lichte grijs */
    }

.adviseur-table tr:nth-child(odd) {
    background-color: #ffffff; /* wit */
}

