.tc-admin-payroll .tc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.toggle-container {
    display: flex;
    align-items: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #2271b1;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-size: 14px;
    color: #666;
}

.tc-payroll-table {
    width: 100%;
    border-collapse: collapse;
}

.tc-payroll-table th,
.tc-payroll-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.tc-payroll-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.tc-payroll-table .totals-row {
    background-color: #f8f9fa;
    font-size: 1.1em;
}

.tc-payroll-table .no-activity {
    display: none; /* Hidden by default */
    opacity: 0.6;
}

.employee-number {
    color: #666;
    font-size: 0.9em;
    margin-left: 5px;
}

.salary-badge {
    background-color: #2271b1;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    margin-left: 8px;
}

.salary-note {
    color: #666;
    font-size: 0.8em;
    font-style: italic;
    margin-left: 5px;
}
