    /* Общие стили */
    .dashboard-section {
        background: white;
        border-radius: 16px;
        padding: 24px;
        margin-bottom: 24px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .dashboard-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .dashboard-section h2 .badge {
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 12px;
        background: #e9edf4;
        color: #475569;
    }
    
    /* Статистика */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
    
    .stat-card {
        background: #f8fafc;
        padding: 16px 20px;
        border-radius: 12px;
        border-left: 4px solid #ffd700;
        transition: transform 0.2s;
    }
    
    .stat-card:hover {
        transform: translateY(-2px);
    }
    
    .stat-card .number {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        display: block;
    }
    
    .stat-card .label {
        font-size: 14px;
        color: #64748b;
        margin-top: 4px;
    }
    
    .stat-card.green { border-left-color: #22c55e; }
    .stat-card.blue { border-left-color: #3b82f6; }
    .stat-card.purple { border-left-color: #8b5cf6; }
    .stat-card.orange { border-left-color: #f59e0b; }
    .stat-card.red { border-left-color: #ef4444; }
    
    /* Таблицы */
    .table-wrapper {
        overflow-x: auto;
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }
    
    table thead {
        background: #f8fafc;
    }
    
    table th {
        text-align: left;
        padding: 12px 16px;
        font-weight: 600;
        color: #475569;
        border-bottom: 2px solid #e9edf4;
    }
    
    table td {
        padding: 10px 16px;
        border-bottom: 1px solid #e9edf4;
        color: #1a1a1a;
    }
    
    table tr:hover {
        background: #f8fafc;
    }
    
    .status-badge {
        display: inline-block;
        padding: 2px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 500;
    }
    
    .status-badge.success { background: #dcfce7; color: #166534; }
    .status-badge.warning { background: #fef3c7; color: #92400e; }
    .status-badge.error { background: #fee2e2; color: #991b1b; }
    
    /* График */
    .chart-container {
        display: flex;
        align-items: flex-end;
        gap: 12px;
        height: 120px;
        padding: 20px 0;
    }
    
    .chart-bar {
        flex: 1;
        background: linear-gradient(180deg, #ffd700, #f59e0b);
        border-radius: 4px 4px 0 0;
        min-height: 20px;
        position: relative;
        transition: height 0.3s;
        min-width: 30px;
    }
    
    .chart-bar .value {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 11px;
        color: #64748b;
        white-space: nowrap;
    }
    
    .chart-label {
        text-align: center;
        font-size: 11px;
        color: #94a3b8;
        margin-top: 4px;
    }
    
    /* Форма импорта */
    .import-form textarea {
        width: 100%;
        min-height: 200px;
        padding: 16px;
        border: 2px solid #e9edf4;
        border-radius: 12px;
        font-family: 'Courier New', monospace;
        font-size: 14px;
        resize: vertical;
        transition: border-color 0.3s;
    }
    
    .import-form textarea:focus {
        outline: none;
        border-color: #ffd700;
    }
    
    .import-btn {
        padding: 12px 32px;
        background: #ffd700;
        color: #1a1a1a;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .import-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    
    .import-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    /* Анимация обновления */
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #e9edf4;
        border-top-color: #ffd700;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
    }
    
    /* Toast уведомления */
    .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .toast {
        padding: 16px 24px;
        border-radius: 12px;
        background: #1a1a1a;
        color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        animation: slideIn 0.3s ease;
        max-width: 400px;
    }
    
    .toast.success { background: #166534; }
    .toast.error { background: #991b1b; }
    .toast.info { background: #1e3a5f; }
    
    @keyframes slideIn {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .stat-card .number {
            font-size: 22px;
        }
    }
    
    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }