.page-wrapper {
    padding: 90px 24px 40px 24px;
}

.app-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.s-cancel {
    background: #fee2e2;
    color: #b91c1c;
}

.s-wait {
    background: #fef9c3;
    color: #a16207;
}

.s-work {
    background: #dbeafe;
    color: #1d4ed8;
}

.s-done {
    background: #dcfce7;
    color: #15803d;
}

.table-modern thead {
    background: #f8fafc;
}

.table-modern thead th {
    border-bottom: 2px solid #e5e7eb;
    font-size: 12px;
    text-transform: uppercase;
    color: #6b7280;
}

.table-modern tbody td {
    vertical-align: middle !important;
    font-size: 14px;
}

.status-select {
    border-radius: 10px;
    padding: 4px 8px;
    border: 1px solid #cbd5e1;
    font-size: 13px;
}

.empty-box {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.emp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.emp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    background: #f3f4f6;
}

.emp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emp-name {
    font-size: 16px;
    font-weight: 600;
}

.emp-position {
    font-size: 12px;
    color: #4f46e5;
    background: #eef2ff;
    display: inline-flex;
    padding: 2px 10px;
    border-radius: 999px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 18px;
    }

    .table-modern {
        font-size: 12px;
    }
}