.timesheet-report .report-params {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
}

.timesheet-report .report-param {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timesheet-report .report-param .control-label {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.timesheet-report .report-param-number {
    width: 110px;
    text-align: right;
}

.timesheet-report .report-param-coefficient .report-param-number {
    width: 90px;
}

.timesheet-report .report-param-action {
    margin-left: auto;
}

.timesheet-report .report-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.timesheet-report .report-summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--panel-bg, #fff);
    border: 1px solid var(--border-color, #e8eced);
    border-radius: 4px;
    padding: 8px 14px;
}

.timesheet-report .report-summary-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.timesheet-report .report-summary-green .report-summary-dot { background: #5cb85c; }
.timesheet-report .report-summary-yellow .report-summary-dot { background: #f0ad4e; }
.timesheet-report .report-summary-red .report-summary-dot { background: #d9534f; }

.timesheet-report .report-summary-label {
    font-size: 12px;
    color: #888;
}

.timesheet-report .report-summary-value {
    font-weight: 600;
}

.timesheet-report .report-summary-extra {
    font-size: 12px;
    color: #888;
}

.timesheet-report .report-summary-actions {
    margin-left: auto;
}

.timesheet-report .report-table {
    margin-bottom: 0;
}

.timesheet-report .report-table > thead > tr > th {
    white-space: nowrap;
}

.timesheet-report .report-th-sortable {
    cursor: pointer;
    user-select: none;
}

.timesheet-report .report-th-scale {
    min-width: 140px;
}

.timesheet-report .report-table > tbody > tr > td {
    vertical-align: middle;
    white-space: nowrap;
}

.timesheet-report .report-row-green { background: rgba(92, 184, 92, 0.07); box-shadow: inset 3px 0 0 #5cb85c; }
.timesheet-report .report-row-yellow { background: rgba(240, 173, 78, 0.09); box-shadow: inset 3px 0 0 #f0ad4e; }
.timesheet-report .report-row-red { background: rgba(217, 83, 79, 0.08); box-shadow: inset 3px 0 0 #d9534f; }
.timesheet-report .report-row-none { color: #888; box-shadow: inset 3px 0 0 #bbb; }

.timesheet-report .report-client {
    font-weight: 600;
}

.timesheet-report .report-strong {
    font-weight: 600;
}

.timesheet-report .report-profit-plus { color: #3c8b3c; font-weight: 600; }
.timesheet-report .report-profit-minus { color: #c9302c; font-weight: 600; }

.timesheet-report .report-group-row > td {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #888;
    background: rgba(0, 0, 0, 0.03);
}

.timesheet-report .report-scale {
    display: block;
    width: 100%;
    height: 14px;
}

.timesheet-report .report-scale-green { fill: rgba(92, 184, 92, 0.45); }
.timesheet-report .report-scale-yellow { fill: rgba(240, 173, 78, 0.45); }
.timesheet-report .report-scale-red { fill: rgba(217, 83, 79, 0.25); }
.timesheet-report .report-scale-fact { fill: #333; }
