.staff-nav-link {
    color: #315d54;
    font-weight: 700;
}

.staff-admin-page {
    padding-top: 42px;
}

.staff-dashboard-head {
    margin-bottom: 24px;
}

.staff-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.staff-stat-card {
    padding: 18px;
    background: #fff;
    border: 1px solid #e7e8e2;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(28, 36, 32, 0.04);
}

.staff-stat-card span,
.staff-stat-card strong {
    display: block;
}

.staff-stat-card span {
    color: #747a76;
    font-size: 0.82rem;
}

.staff-stat-card strong {
    margin-top: 8px;
    font-size: 1.9rem;
    line-height: 1;
}

.staff-admin-section {
    margin-top: 22px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e8e7e2;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(26, 34, 30, 0.04);
}

.staff-section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.staff-section-head h2 {
    margin: 4px 0 4px;
    font-size: 1.25rem;
}

.staff-section-head p {
    margin: 0;
    color: #80837f;
    font-size: 0.86rem;
}

.staff-table-shell {
    width: 100%;
    overflow-x: auto;
}

.staff-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.staff-table th,
.staff-table td {
    padding: 13px 11px;
    text-align: right;
    vertical-align: middle;
    border-bottom: 1px solid #efeee9;
}

.staff-table th {
    color: #676d69;
    background: #fafaf7;
    font-size: 0.76rem;
    font-weight: 700;
}

.staff-table tbody tr:last-child td {
    border-bottom: 0;
}

.staff-row-pending {
    background: #fffdf7;
}

.staff-provider-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
}

.staff-provider-cell img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    background: #f0f0ed;
}

.staff-provider-cell strong,
.staff-provider-cell small,
.staff-block-small {
    display: block;
}

.staff-provider-cell small,
.staff-block-small {
    margin-top: 2px;
    color: #929591;
    font-size: 0.72rem;
}

.status-pill.approved {
    background: #e8f5ee;
    color: #357052;
}

.staff-action-stack,
.staff-inline-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.staff-action-stack {
    align-items: flex-start;
    flex-direction: column;
}

.staff-action-btn,
.staff-mini-btn {
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid #dedfd9;
    border-radius: 8px;
    background: #fff;
    color: #343a36;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.staff-action-btn.approve {
    border-color: #bdd8cd;
    background: #edf8f3;
    color: #2d6a50;
}

.staff-action-btn.reject {
    border-color: #ead0d0;
    background: #fff4f4;
    color: #8b4545;
}

.staff-mini-btn:hover,
.staff-action-btn:hover {
    filter: brightness(0.98);
}

.staff-reject-details summary {
    color: #8b4545;
    font-weight: 700;
    cursor: pointer;
}

.staff-reject-details form {
    display: grid;
    gap: 7px;
    margin-top: 8px;
}

.staff-reject-details textarea {
    width: 220px;
    padding: 8px;
    border: 1px solid #dedfd9;
    border-radius: 8px;
    font: inherit;
    resize: vertical;
}

.staff-message-cell {
    max-width: 260px;
    color: #5d625e;
}

.staff-empty-cell {
    padding: 28px !important;
    text-align: center !important;
    color: #8c8f8b;
}

@media (max-width: 900px) {
    .staff-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .staff-stat-grid {
        grid-template-columns: 1fr;
    }

    .staff-admin-section {
        padding: 16px;
    }
}
