
    /* static/css/style.css */
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        margin: 0;
        padding: 20px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        overflow: hidden;
    }

    .header {
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: white;
        padding: 30px;
        text-align: center;
    }

    .header h1 {
        margin: 0;
        font-size: 2.5em;
        font-weight: 300;
    }

    .header p {
        margin: 10px 0 0 0;
        opacity: 0.8;
    }

    .content {
        padding: 30px;
    }

    .form-section {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 30px;
        border-left: 5px solid #3498db;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #2c3e50;
    }

    .form-control {
        width: 100%;
        padding: 12px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .form-control:focus {
        border-color: #3498db;
        outline: none;
    }

    .btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn-parse {
        background: linear-gradient(135deg, #27ae60, #229954);
    }

    .matches-list {
        max-height: 400px;
        overflow-y: auto;
        border: 1px solid #e9ecef;
        border-radius: 8px;
    }

    .match-item {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
        cursor: pointer;
        transition: background 0.2s;
    }

    .match-item:hover {
        background: #f8f9fa;
    }

    .match-item:last-child {
        border-bottom: none;
    }

    .match-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .team-logo {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #e9ecef;
        flex-shrink: 0;
    }

    .team-logo.placeholder {
        background: #3498db;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        flex-shrink: 0;
    }

    .team-names {
        font-weight: 600;
        color: #2c3e50;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-link {
        color: #3498db;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s;
        flex-shrink: 0;
    }

    .match-link:hover {
        color: #2980b9;
    }

    .match-info {
        font-size: 0.9em;
        color: #6c757d;
        margin-top: 5px;
    }

    .today-badge {
        background: #27ae60;
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.8em;
        margin-left: 10px;
    }

    .recommendation {
        background: #e8f5e8;
        border-left: 5px solid #27ae60;
        padding: 15px;
        margin: 10px 0;
        border-radius: 5px;
    }

    .insight {
        background: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 12px;
        margin: 8px 0;
        border-radius: 5px;
    }

    .loading {
        text-align: center;
        padding: 40px;
    }

    .spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 2s linear infinite;
        margin: 0 auto 20px;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* СТИЛИ ДЛЯ ДАШБОРДА */
    .dashboard-container {
        margin-top: 20px;
    }

    .chart-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .chart-container {
        flex: 1;
        background: white;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        min-width: 300px;
    }

    .chart {
        height: 400px !important;
        width: 100% !important;
        background: white;
    }

    .dashboard-controls {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        justify-content: center;
    }

    .btn-standard {
        background: linear-gradient(135deg, #3498db, #2980b9);
    }

    .btn-dashboard {
        background: linear-gradient(135deg, #8e44ad, #9b59b6);
    }

    @media (max-width: 768px) {
        .chart-row {
            flex-direction: column;
        }
        .chart-container {
            min-width: auto;
        }
    }
    