.veille-header h1 {
        text-align: center;
        color: #0057B7;
        margin: 2rem 0 1rem 0;
        font-size: 2.5rem;
        font-weight: 700;
    }

    .veille-header .subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #555;
        margin: 1rem 0 2rem 0;
        font-weight: 400;
    }

    .veille h2 {
        color: #0057B7;
        margin: 2.5rem 0 1rem 0;
        font-size: 1.8rem;
        font-weight: 600;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #1E90FF;
        display: inline-block;
    }

    .veille h3 {
        color: #1E90FF;
        margin: 1.5rem 0 1rem 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .veille p {
        line-height: 1.8;
        color: #333;
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        text-align: justify;
    }

    .veille a {
        color: #1E90FF;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
    }

    .veille a:hover {
        color: #0057B7;
    }

    .veille a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #0057B7;
        transition: width 0.3s ease;
    }

    .veille a:hover::after {
        width: 100%;
    }

    .highlight-box {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-left: 4px solid #1E90FF;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 1.5rem 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .highlight-box h3 {
        margin-top: 0;
        color: #0057B7;
        font-size: 1.3rem;
    }

    .sources-table-container {
        background: #fff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin: 1.5rem 0;
        overflow-x: auto;
    }

    .sources-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .sources-table thead tr {
        background: linear-gradient(135deg, #0057B7 0%, #1E90FF 100%);
        color: white;
    }

    .sources-table thead th {
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .sources-table tbody tr {
        transition: all 0.3s ease;
        border-bottom: 1px solid #e9ecef;
    }

    .sources-table tbody tr:hover {
        background: #f8f9fa;
        transform: scale(1.01);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .sources-table tbody tr:last-child {
        border-bottom: none;
    }

    .sources-table td {
        padding: 1rem;
    }

    .source-name {
        font-weight: 600;
        color: #0057B7;
    }

    .source-theme {
        color: #666;
    }

    .tool-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0057B7 0%, #1E90FF 100%);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(0,87,183,0.3);
        margin: 0.5rem 0;
    }

    @media (max-width: 768px) {
        .veille-header h1 {
            font-size: 2rem;
        }

        .veille-header .subtitle {
            font-size: 1rem;
        }

        .sources-table-container {
            padding: 1rem;
        }
    }

