/* Sarkari Network - Premium Table Styles 2026 */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap');

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    background: #fff;
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: linear-gradient(135deg, #05055F, #0a0a8f);
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
}

.table tbody tr {
    transition: 0.2s;
}

.table tbody tr:hover {
    background-color: #f8f9ff;
    transform: translateX(4px);
}

.table td {
    padding: 15px 20px;
    vertical-align: middle;
    border-color: #eff2f7;
    font-size: 0.95rem;
    color: #333;
}

/* Zebra Striping */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(5, 5, 95, 0.02);
}

/* Links in Tables */
.table td a {
    color: #CD0808;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.table td a:hover {
    border-bottom-color: #CD0808;
}

/* Quick Copy Codes / Registration IDs */
.reg-code {
    font-family: 'Roboto Mono', monospace;
    background: #f1f2f3;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid #ddd;
}

/* Highlight Column */
.highlight-cell {
    background: rgba(205, 8, 8, 0.05);
    font-weight: 700;
}

@media (max-width: 768px) {
    .table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}
