/*
Theme Name: Majhi Naukri 2026
Theme URI: https://majhinaukri.in
Author: Your Name
Description: Government Job Portal Theme (Tailwind + JS)
Version: 1.0
License: GPL v2
Text Domain: majhi-naukri
*/

/* ADD THIS TO header.php inside <style> */

/* 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; }
}