.employee-summary-grid {
display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.employees-panel {
padding: 0;
    overflow: hidden;
}

.employees-toolbar {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 21px;
    border-bottom: 1px solid #eaecf0;
}

.employees-toolbar .panel-title {
margin-bottom: 2px;
}

.employees-filter-form {
display: flex;
    align-items: center;
    gap: 9px;
}

.employee-search-wrapper {
position: relative;
}

.employee-search-wrapper > svg {
position: absolute;
        top: 50%;
        left: 12px;
        width: 16px;
        height: 16px;
        color: #98a2b3;
        pointer-events: none;
        transform: translateY(-50%);
}

.employee-search-input {
width: 245px;
    min-height: 39px;
    padding-left: 37px;
    font-size: 12px;
    border-color: #e2e8f0;
    border-radius: 8px;
}

.employee-date-input {
width: 150px;
    min-height: 39px;
    font-size: 12px;
    border-color: #e2e8f0;
    border-radius: 8px;
}

.employee-filter-button {
display: inline-flex;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: #1c67b2;
    border: 0;
    border-radius: 8px;
}

.employee-filter-button:hover {
background: #15558f;
}

.employee-filter-button svg {
width: 15px;
        height: 15px;
}

.employees-table-wrapper {
overflow-x: auto;
}

.employees-table {
width: 100%;
    min-width: 1050px;
    border-collapse: collapse;
}

.employees-table th {
padding: 11px 14px;
        font-size: 10px;
        font-weight: 600;
        color: #667085;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.035em;
        background: #f8fafc;
        border-bottom: 1px solid #eaecf0;
}

.employees-table td {
padding: 14px;
        font-size: 12px;
        color: #475467;
        border-bottom: 1px solid #eef1f5;
        vertical-align: middle;
}

.employees-table tbody tr:last-child td {
border-bottom: 0;
}

.employees-table tbody tr:hover {
background: #fbfcfe;
}

.employee-name-cell {
display: flex;
    min-width: 190px;
    align-items: center;
    gap: 11px;
}

.employee-avatar {
display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #175cd3;
    background: #eff8ff;
    border-radius: 50%;
}

.employee-identity {
min-width: 0;
}

.employee-identity strong {
display: block;
        overflow: hidden;
        font-size: 12px;
        font-weight: 600;
        color: #344054;
        text-overflow: ellipsis;
        white-space: nowrap;
}

.employee-identity small {
display: block;
        max-width: 190px;
        margin-top: 2px;
        overflow: hidden;
        font-size: 10px;
        color: #98a2b3;
        text-overflow: ellipsis;
        white-space: nowrap;
}

.employee-computer-cell {
display: flex;
    max-width: 220px;
    align-items: center;
    gap: 7px;
}

.employee-computer-cell svg {
width: 15px;
        height: 15px;
        flex: 0 0 15px;
        color: #667085;
}

.employee-computer-cell > span:not(.computer-count-badge) {
overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}

.computer-count-badge {
display: inline-flex;
    min-width: 21px;
    height: 21px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-size: 10px;
    font-weight: 700;
    color: #175cd3;
    background: #eff8ff;
    border-radius: 11px;
}

.employee-activity-time {
font-size: 12px;
    font-weight: 600;
    color: #344054;
}

.employees-empty-state {
display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.employees-empty-state strong {
margin-top: 12px;
        font-size: 14px;
        color: #344054;
}

.employees-empty-state span {
max-width: 390px;
        margin-top: 5px;
        font-size: 12px;
        color: #667085;
}

@media (max-width: 1100px) {
.employee-summary-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.employees-toolbar {
align-items: flex-start;
        flex-direction: column;
}

.employees-filter-form {
width: 100%;
}

.employee-search-wrapper {
flex: 1;
}

.employee-search-input {
width: 100%;
}
}

@media (max-width: 700px) {
.employee-summary-grid {
grid-template-columns: 1fr;
}

.employees-filter-form {
align-items: stretch;
        flex-direction: column;
}

.employee-date-input {
width: 100%;
}
}

