/* ==============================================================
   ElectroCSE - Complete Dark Mode Specific Overrides
   Updated for New Color: #3d85c6
   ============================================================== */

/* 1. Tag Clouds Fix (Extreme Specificity) */
[data-theme="dark"] .widget .widget-content a.tag {
    color: #cbd5e1 !important; /* Normal state mein clear light grey text */
    border: 1px solid #334155 !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

[data-theme="dark"] .widget .widget-content a.tag:hover {
    color: #3d85c6 !important; /* Naya hover color */
    border-color: #3d85c6 !important; 
    background-color: transparent !important;
}

/* 2. In-text Links Fix (Articles ke andar ke links) */
[data-theme="dark"] .post-content a,
[data-theme="dark"] .post-body a {
    color: #3d85c6 !important; /* Naya link color */
    text-decoration: underline !important;
}

[data-theme="dark"] .post-content a:hover,
[data-theme="dark"] .post-body a:hover {
    color: #6fa8dc !important; /* Hover par slightly lighter blue taaki click ka feel aaye */
}

/* 3. Text Selection (Highlight) Fix */
[data-theme="dark"] *::selection {
    background-color: #3d85c6 !important;
    color: #ffffff !important; /* Medium blue ke upar white text best padhne mein aata hai */
}
[data-theme="dark"] *::-moz-selection {
    background-color: #3d85c6 !important;
    color: #ffffff !important;
}

/* 4. Sidebar Categories (Explore Topics) Hover Fix */
[data-theme="dark"] .widget-categories ul li a:hover,
[data-theme="dark"] .widget ul li a:hover {
    color: #3d85c6 !important; 
}

/* 5. General Links aur Headers (Fallback hover) */
[data-theme="dark"] a:hover, 
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .post-title a:hover {
    color: #3d85c6 !important; 
}