.worker-page-container {
    padding: 10px 0;
}

.filter-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.filter-group input,
.filter-group select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
}

.btn {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    cursor: pointer;
}

.btn:hover { background: #f8fafc; }

.btn-primary {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
}

.btn-primary:hover { background: #1e40af; }

.btn-danger {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}

.btn-danger:hover { background: #fecaca; }

.btn-small {
    padding: 6px 10px;
    font-size: 12px;
}

.action-group button:not(:last-child) {
    margin-right: 8px;
}

.table-wrapper {
    padding: 20px;
}

.worker-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.worker-table th,
.worker-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.text-right { text-align: right; }
.text-center { text-align: center; }

.row-clickable {
    cursor: pointer;
}

.row-clickable:hover {
    background-color: #f7f7f7;
}

.no-data {
    text-align: center;
    padding: 40px !important;
    color: #6b7280;
}

/* Status */
.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.status-working { background: #e6f7ff; color: #1890ff; }
.status-off { background: #f5f5f5; color: #595959; }
.status-trip { background: #fffbe6; color: #faad14; }
.status-default { background: #eee; color: #555; }

/* Pagination */
.pagination-controls {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.pagination-controls button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.pagination-controls button.active {
    background: #4a6cf7;
    color: #fff;
}
/* 합계 금액 박스 테이블 */
.summary-table {
    margin: 10px 0 6px;
}

.summary-table th {
    text-align: left;
}
