.page--staff {
    padding: 6px 24px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-status {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;

    padding: 14px 0;
    border-bottom: 1px solid #343940;
}

.staff-status:last-child {
    border-bottom: none;
}

.staff-status__name {
    font-weight: 600;
    color: #f5f5f5;
}

.staff-status__shift {
    color: #78a987;
    font-size: 14px;
}

.staff-status__attendance {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    color: #b8bec5;
    font-size: 14px;
}

.staff-status__indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #78a987;
    flex-shrink: 0;
}

.staff-sales-card {
    margin-top: 24px;
}

.staff-sales__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.staff-sales__header h2 {
    margin: 0;

    font-size: 18px;
    font-weight: 600;
    color: #f5f5f5;
}

.staff-sales__header p {
    margin: 4px 0 0;

    font-size: 13px;
    color: #8f969e;
}

.staff-sales__grand-total {
    font-size: 20px;
    font-weight: 600;
    color: #f5f5f5;
}

.staff-sales {
    padding: 14px 0;

    border-bottom: 1px solid #343940;
}

.staff-sales:last-child {
    border-bottom: none;
}

.staff-sales__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}

.staff-sales__name {
    font-weight: 600;
    color: #f5f5f5;
}

.staff-sales__total {
    font-weight: 600;
    color: #f5f5f5;
}

.staff-sales__bar {
    display: flex;

    width: 100%;
    height: 12px;

    overflow: hidden;

    border-radius: 6px;
    background: #343940;
}

.staff-sales__treatments {
    background: #78a987;
}

.staff-sales__products {
    background: #c6a75e;
}

.staff-sales__breakdown {
    display: flex;
    justify-content: space-between;

    margin-top: 6px;

    font-size: 12px;
    color: #8f969e;
}

@media (max-width: 700px) {
    .staff-sales__breakdown {
        flex-direction: column;
        gap: 3px;
    }
}