/*
Theme Name: Mah Nokari 2026 Redesign
Theme URI: https://www.instagram.com/iskg.2
Author: Your Name
Description: Custom Government Job Portal Theme 
Version: 1.0
License: GPL v2
Text Domain: mahnokari.com
*/

/* ADD THIS TO header.php inside <style> */

/* Bulletproof Lucide fix for grid + mobile */
[data-lucide] svg,
.lucide {
  width: 100% !important;
  height: 100% !important;
  max-width: 32px;
  max-height: 32px;
}


/* ABSOLUTE FIX for Lucide SVG stretch (mobile + desktop) */
.nav-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;

  display: inline-flex;
  flex: 0 0 20px;

  stroke-width: 1.8;
}

/* Custom Table Styling for Single Posts */
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.95rem; }
.prose th { background-color: #eff6ff; /* blue-50 */ color: #1e3a8a; /* blue-900 */ font-weight: 700; padding: 12px; border: 1px solid #e5e7eb; text-align: left; }
.prose td { padding: 12px; border: 1px solid #e5e7eb; color: #374151; }
.prose tr:nth-child(even) { background-color: #f9fafb; /* gray-50 */ }
.prose a { color: #2563eb; text-decoration: none; font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose h2, .prose h3 { color: #111827; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e5e7eb; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* Responsive Table Wrapper */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 0.75rem; border: 1px solid #e5e7eb; margin-bottom: 1.5rem; }

/* --- NEW Blinking Icon Styling --- */
.blinking-update-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff5252; /* Bright red */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    animation: pulse-red 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
    margin-right: 6px;
    vertical-align: middle;
}

/* --- Pulse Animation --- */
@keyframes pulse-red {
    to {
        box-shadow: 0 0 0 12px rgba(255, 82, 82, 0);
    }
}

/* --- New Badge Styling --- */
.new-badge {
    display: inline-block;
    background-color: #ffc107; /* Yellow */
    color: #333;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    margin-right: 8px;
    vertical-align: middle;
    animation: blinker-new 1.2s step-end infinite;
}

@keyframes blinker-new {
    50% { opacity: 0; }
}

