/* Auto-generated from backlinks-list.php inline styles */

    /* ============================================
       WBP Dashboard v2.0 - Progress Rings Design
       ============================================ */
    .blpatrol-dashboard-v2 {
        margin: 25px 0;
    }
    
    /* Vue d'ensemble rapide - Progress Rings */
    .blpatrol-overview-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 25px;
        border: 1px solid #e5e7eb;
        margin-bottom: 20px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    
    .blpatrol-overview-card h3 {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin: 0 0 25px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .blpatrol-overview-card h3 .icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        background: #ede9fe;
        color: #7c3aed;
    }
    
    .blpatrol-rings-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
        text-align: center;
    }
    
    @media screen and (max-width: 1400px) {
        .blpatrol-rings-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    @media screen and (max-width: 900px) {
        .blpatrol-rings-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .blpatrol-ring-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .blpatrol-ring-wrapper {
        position: relative;
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .blpatrol-svg-ring {
        width: 80px;
        height: 80px;
        transform: rotate(-90deg);
    }
    
    .blpatrol-svg-ring circle {
        fill: none;
        stroke-width: 8;
    }
    
    .blpatrol-svg-ring .bg {
        stroke: #f3f4f6;
    }
    
    .blpatrol-svg-ring .progress {
        stroke-linecap: round;
        transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .blpatrol-ring-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        font-weight: 700;
    }
    
    .blpatrol-ring-label {
        font-weight: 600;
        color: #374151;
        font-size: 13px;
    }
    
    .blpatrol-ring-sublabel {
        font-size: 12px;
        color: #9ca3af;
        margin-top: 2px;
    }
    
    .blpatrol-ring-sublabel.positive {
        color: #10b981;
    }
    
    .blpatrol-ring-sublabel.negative {
        color: #ef4444;
    }
    
    /* Couleurs */
    .text-purple { color: #667eea; }
    .text-green { color: #10b981; }
    .text-blue { color: #3b82f6; }
    .text-orange { color: #f59e0b; }
    .text-pink { color: #ec4899; }
    .text-gray { color: #6b7280; }
    .text-cyan { color: #06b6d4; }
    
    /* Grille des cartes détaillées */
    .blpatrol-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    @media screen and (max-width: 1100px) {
        .blpatrol-details-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .blpatrol-detail-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 25px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    
    .blpatrol-detail-card h4 {
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin: 0 0 20px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .blpatrol-detail-card h4 .card-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
    
    .blpatrol-detail-card h4 .card-icon.blue { background: #dbeafe; color: #2563eb; }
    .blpatrol-detail-card h4 .card-icon.green { background: #dcfce7; color: #16a34a; }
    .blpatrol-detail-card h4 .card-icon.purple { background: #ede9fe; color: #7c3aed; }
    .blpatrol-detail-card h4 .card-icon.orange { background: #ffedd5; color: #ea580c; }
    
    /* Barres horizontales */
    .blpatrol-h-bar-chart {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .blpatrol-h-bar-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .blpatrol-h-bar-item .bar-label {
        width: 80px;
        font-size: 13px;
        color: #4b5563;
        text-align: right;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .blpatrol-h-bar-item .bar-track {
        flex: 1;
        height: 24px;
        background: #f3f4f6;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .blpatrol-h-bar-item .bar-fill {
        height: 100%;
        border-radius: 12px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        font-size: 12px;
        font-weight: 600;
        color: white;
        transition: width 0.5s ease;
        min-width: fit-content;
    }
    
    .blpatrol-h-bar-item .bar-fill.purple { background: linear-gradient(90deg, #667eea, #764ba2); }
    .blpatrol-h-bar-item .bar-fill.green { background: linear-gradient(90deg, #10b981, #34d399); }
    .blpatrol-h-bar-item .bar-fill.blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
    .blpatrol-h-bar-item .bar-fill.orange { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
    .blpatrol-h-bar-item .bar-fill.pink { background: linear-gradient(90deg, #ec4899, #f472b6); }
    .blpatrol-h-bar-item .bar-fill.cyan { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
    .blpatrol-h-bar-item .bar-fill.gray { background: linear-gradient(90deg, #6b7280, #9ca3af); }
    
    /* Stacked bar */
    .blpatrol-stacked-bar {
        display: flex;
        height: 14px;
        border-radius: 7px;
        overflow: hidden;
        margin-bottom: 15px;
    }
    
    .blpatrol-stacked-bar .segment {
        transition: flex 0.3s ease;
        min-width: 2px;
    }
    
    .blpatrol-stacked-bar .segment:hover {
        filter: brightness(1.1);
    }
    
    .blpatrol-stacked-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .blpatrol-stacked-legend-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: #4b5563;
    }
    
    .blpatrol-stacked-legend-item .swatch {
        width: 12px;
        height: 12px;
        border-radius: 3px;
    }
    
    .blpatrol-stacked-legend-item .count {
        font-weight: 600;
        color: #1f2937;
    }
    
    /* Mini sparkline pour évolution */
    .blpatrol-sparkline {
        height: 50px;
        display: flex;
        align-items: flex-end;
        gap: 3px;
        margin-top: 15px;
        padding: 10px;
        background: #f9fafb;
        border-radius: 8px;
    }
    
    .blpatrol-sparkline .spark-bar {
        flex: 1;
        background: #e0e7ff;
        border-radius: 2px;
        transition: all 0.2s;
        min-height: 4px;
    }
    
    .blpatrol-sparkline .spark-bar:hover,
    .blpatrol-sparkline .spark-bar:last-child {
        background: #667eea;
    }
    
    .blpatrol-sparkline .spark-bar:last-child {
        background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    }
    
    /* Background colors */
    .bg-purple { background: #667eea; }
    .bg-green { background: #10b981; }
    .bg-blue { background: #3b82f6; }
    .bg-orange { background: #f59e0b; }
    .bg-pink { background: #ec4899; }
    .bg-gray { background: #9ca3af; }
    .bg-cyan { background: #06b6d4; }
    .bg-lime { background: #84cc16; }
    .bg-indigo { background: #6366f1; }
    
    /* Card d'indexation (preview) */
    .blpatrol-indexation-preview {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border: 1px dashed #0ea5e9;
        opacity: 0.7;
    }
    
    .blpatrol-indexation-preview .coming-soon {
        background: #0ea5e9;
        color: white;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 10px;
        margin-left: auto;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .blpatrol-no-data-msg {
        color: #9ca3af;
        font-style: italic;
        font-size: 13px;
        text-align: center;
        padding: 20px;
    }
    

    /* CSS critique inline - SANS RESPONSIVE */
    #blpatrol-add-form-accordion { background: #fff !important; border: 1px solid #c3c4c7 !important; border-left: 4px solid #2271b1 !important; margin: 25px 0 !important; box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important; }
    .blpatrol-accordion-header { padding: 15px 20px !important; background: #f6f7f7 !important; border-bottom: 1px solid #dcdcde !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
    .blpatrol-accordion-content { padding: 25px !important; background: #f9f9f9 !important; }
    .blpatrol-inline-add-form { display: block !important; max-width: 100% !important; }
    
    /* GRILLES FORCÉES */
    .blpatrol-form-row { 
        display: grid !important; 
        gap: 15px !important; 
        margin-bottom: 18px !important; 
        align-items: end !important; 
    }
    
    /* LIGNE 1 : 3 colonnes (URL + Ancre + Date) */
    .blpatrol-inline-add-form > .blpatrol-form-row:nth-of-type(1) { 
        grid-template-columns: 2fr 1.5fr 180px !important; 
    }
    
    /* LIGNE 2 : 2 colonnes (Note + Type de lien) */
    .blpatrol-inline-add-form > .blpatrol-form-row:nth-of-type(2) { 
        grid-template-columns: 2fr 1fr !important; 
    }
    
    /* LIGNE 3 : 5 colonnes (Source + Prix + Contact + Email + Tel) */
    .blpatrol-inline-add-form > .blpatrol-form-row:nth-of-type(3) { 
        grid-template-columns: 1.5fr 110px 1.2fr 1.5fr 140px !important; 
    }
    
    /* CHAMPS */
    .blpatrol-form-field { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 6px !important; 
        background: #fff !important; 
        padding: 12px !important; 
        border-radius: 4px !important; 
        box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important; 
    }
    
    .blpatrol-form-field label { 
        font-size: 11px !important; 
        font-weight: 600 !important; 
        color: #1d2327 !important; 
        text-transform: uppercase !important; 
        letter-spacing: 0.5px !important; 
        display: flex !important; 
        align-items: center !important; 
        gap: 5px !important; 
        margin: 0 0 4px 0 !important; 
    }
    
    .blpatrol-form-field input, 
    .blpatrol-form-field textarea { 
        width: 100% !important; 
        padding: 8px 10px !important; 
        border: 1px solid #8c8f94 !important; 
        border-radius: 4px !important; 
        font-size: 13px !important; 
        background: #fff !important; 
        box-sizing: border-box !important; 
    }
    
    .blpatrol-form-field input:focus, 
    .blpatrol-form-field textarea:focus { 
        border-color: #2271b1 !important; 
        box-shadow: 0 0 0 1px #2271b1 !important; 
        outline: none !important; 
    }
    
    .blpatrol-form-actions { 
        display: flex !important; 
        gap: 10px !important; 
        padding-top: 20px !important; 
        margin-top: 10px !important; 
        border-top: 2px solid #dcdcde !important; 
    }
    
    .blpatrol-form-actions .button {
        height: 36px !important;
        line-height: 34px !important;
        padding: 0 20px !important;
        font-size: 14px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .blpatrol-form-actions .button .dashicons {
        font-size: 16px !important;
        width: 16px !important;
        height: 16px !important;
        line-height: 1 !important;
    }
    

    .tablenav-pages-info {
        color: #50575e;
        font-size: 13px;
    }
    .tablenav.bottom .pagination-links a,
    .tablenav.bottom .pagination-links span {
        padding: 5px 10px;
        margin: 0 2px;
        border-radius: 4px;
        text-decoration: none;
    }
    .tablenav.bottom .pagination-links a {
        background: #f0f0f1;
        color: #2271b1;
    }
    .tablenav.bottom .pagination-links a:hover {
        background: #2271b1;
        color: #fff;
    }
    .tablenav.bottom .pagination-links .current {
        background: #2271b1;
        color: #fff;
        font-weight: 600;
    }
    .tablenav.bottom .pagination-links .dots {
        background: transparent;
    }
    