/* ==========================================================================
   GOVERNMENT RESOLUTIONS (GR) STYLES
   ========================================================================== */

/* Header Styling */
.gr-header {
    background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.9)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1470'); /* Legal/Office Background */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 5%;
    text-align: center;
}

.gr-header h1 {
    margin: 0;
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-top: 12px;
    color: var(--accent-gold);
    font-weight: 500;
}

/* Filter Section - Floating over header */
.filter-section {
    max-width: 1100px;
    margin: -35px auto 40px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.05);
}

.filter-section input, 
.filter-section select {
    padding: 14px;
    border: 1.5px solid #e1e8ed;
    border-radius: 8px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: 0.3s;
}

.filter-section input:focus, 
.filter-section select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
}

/* GR Table Styling */
.gr-container {
    max-width: 1100px;
    margin: 0 auto 80px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--primary-blue);
    color: var(--white);
}

th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

td {
    padding: 22px 20px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #fcfdfe;
}

/* Title & Meta Info */
.gr-title {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
    transition: 0.3s;
}

.gr-title:hover {
    color: var(--accent-gold);
}

.gr-meta {
    font-size: 0.8rem;
    color: #636e72;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.status-badge.new {
    background: #ebfbee;
    color: #27ae60;
    border: 1px solid #27ae60;
    /* News Badge प्रमाणे Blink इफेक्ट हवा असल्यास खालील ओळ जोडा */
    animation: blinkBadge 1.5s infinite;
}

/* Download Button */
.btn-download {
    background: #e74c3c;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* Responsive Table */
@media (max-width: 768px) {
    .filter-section {
        grid-template-columns: 1fr;
        margin: -20px 20px 30px;
        padding: 15px;
    }
    
    th:nth-child(2), td:nth-child(2) {
        display: none; /* मोबाईलवर तारखेचा कॉलम लपवा */
    }

    .gr-title {
        font-size: 0.95rem;
    }
}