/* Shared Table Styles for All Document Pages */
/* PMLA, FEMA, FEOA, BNS, BNSS, BSA, Vacancy, Recruitment Rules, Tender */

.document-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.document-table th {
    background-color: maroon;
    color: white;
    padding: 10px 12px;
    text-align: left;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #6B1D00;
}

.document-table th:first-child {
    text-align: center;
    width: 50px;
}

.document-table th:last-child {
    text-align: center;
    width: 130px;
}

.document-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    vertical-align: middle;
    font-size: 13px;
}

.document-table td:first-child {
    text-align: center;
    font-weight: normal;
    background-color: #f9f9f9;
}

.document-table td:last-child {
    text-align: center;
}

.document-table tr:nth-child(even) td {
    background-color: #fafafa;
}

.document-table tr:nth-child(even) td:first-child {
    background-color: #f5f5f5;
}

.document-table tr:hover td {
    background-color: #f0f0f0;
}

/* Download Icon Styling */
.doc-download-icon {
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
}

.doc-download-icon:hover {
    transform: scale(1.2);
}

/* Section Headers */
.doc-section-header {
    background-color: maroon;
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 0 0;
    letter-spacing: 0.5px;
}
