.employee-list-block {
    margin: 2em 0;
    background: #fafbfc;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.employee-list-block h3 {
    margin-bottom: 1.5em;
    font-size: 1.4em;
    color: #2b2e38;
    letter-spacing: 0.02em;
}
.employee-list-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.employee-list-block li {
    margin-bottom: 1em;
    padding: 1em;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s;
}
.employee-list-block li:last-child {
    margin-bottom: 0;
}
.employee-avatar {
    width: 80px;
    height: 80px;
    background: #d1eaff;
    color: #2b2e38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 1em;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(30,144,255,0.04);
}
.employee-avatar img {
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}
.employee-info {
    display: flex;
    flex-direction: column;
}
.employee-name {
    font-weight: 600;
    font-size: 1.07em;
    margin-bottom: 2px;
}
.employee-email {
    color: #4f5b6b;
    font-size: 0.98em;
    margin-bottom: 1px;
}
.employee-profile {
    background: #e7f5e6;
    color: #36833a;
    font-size: 0.92em;
    border-radius: 6px;
    padding: 2px 9px;
    display: inline-block;
    margin-top: 2px;
    font-weight: 500;
}