/* 补贴就业2025页面特定样式 */
.subsidy-table {
    font-size: 0.9rem;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 2rem;
}

.subsidy-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-align: center;
}

.subsidy-table th, 
.subsidy-table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.subsidy-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

.subsidy-table tr:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.subsidy-table td.text-end {
    text-align: right;
}

.subsidy-card {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.subsidy-card .card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.subsidy-highlight {
    background-color: #fffde7;
    border-left: 3px solid var(--warning-color);
    padding: 1rem;
    margin: 1rem 0;
}

.subsidy-author {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.subsidy-chart-container {
    height: 400px;
    margin-bottom: 2rem;
}

.example-calculation {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.example-calculation h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.example-calculation .table {
    margin-bottom: 0;
}

.subsidy-section {
    margin-bottom: 3rem;
}

.subsidy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.reference-list {
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.reference-list li {
    margin-bottom: 0.5rem;
}

/* 印刷样式优化 */
@media print {
    .subsidy-table {
        page-break-inside: avoid;
    }
    
    .example-calculation {
        page-break-inside: avoid;
    }
} 