.employeePhoto{
    border-radius: 20px;
    width: 40px;
    height: 40px;  
    margin-right: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.employeePhotoNull{
    flex-shrink: 0;
    background: #b1ec52;
    color: #5e9802;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 14px;

}


.employeeDeadline{
    font-size: 14px;
    border-radius: 4px;
    padding: 6px 10px 7px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.overdue{
    color: #ff4d4f;
    background-color: #FDF0ED;
}

.employeeDeadline:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ff4d4f;
    border-radius: 50%;
    margin-right: 8px;
}

.almost_overdue{
    color: #faad14;
    background-color: #fdfaed;
}

.almost_overdue:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #faad14;
    border-radius: 50%;
    margin-right: 8px;
}

.in_order{
    color: #52c41a;
    background-color: #F0FAF0;
}

.in_order:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #52c41a;
    border-radius: 50%;
    margin-right: 8px;
}

.employeeInfo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.employeePercent{
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.analyticsEmployeeTable{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #AFB2B7;
    border-radius: 8px;
    overflow: hidden; /* Чтобы края не выходили за рамки */
}

.analyticsEmployeeTable th{
    border-bottom: 1px solid #D9D9D9;
    color: #AFB2B7;
    font-weight: normal;
    font-size: 16px;
}

.analyticsEmployeeTable th,
.analyticsEmployeeTable td {
    padding: 10px;
    text-align: left;
}

.analyticsEmployeeTable th:first-child,
.analyticsEmployeeTable td:first-child{
    padding-left: 40px;
}

.analyticsEmployeeTable th:last-child,
.analyticsEmployeeTable td:last-child{
    padding-right: 40px;
}

.analyticsEmployeeTable tr:first-child th {
    border-top: none;
}

.analyticsEmployeeTable tr:last-child td {
    border-bottom: none;
}

.analyticsEmployeeTable tr td:first-child,
.analyticsEmployeeTable tr th:first-child {
    border-left: none;
}

.analyticsEmployeeTable tr{
    cursor: pointer !important;
}

.analyticsEmployeeTable tr:hover{
    background-color: #F7F8FC;
    transition: background-color 300ms ease;
}
