/* ═══ IREDA Voyage ═══ */
.ivg-pending-note {
    display: flex; align-items: center; gap: .5rem;
    background: #fef3c7; color: #92400e;
    font-size: .8rem; font-weight: 600;
    padding: .7rem 1rem; border-radius: 10px;
    margin-bottom: 1rem;
}
.ivg-table-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
    overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.ivg-table-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, #0c1a35, #1a4db8);
    color: #fff;
}
.ivg-table-header-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.ivg-table-header-title { font-size: 1.02rem; font-weight: 700; }
.ivg-table-header-sub   { font-size: .78rem; opacity: .85; margin-top: .1rem; }
.ivg-doc-count-pill {
    margin-left: auto; background: rgba(255,255,255,.18); color: #fff;
    font-size: .72rem; font-weight: 700; padding: .3rem .7rem;
    border-radius: 20px; flex-shrink: 0;
}
.ivg-table-wrap { overflow-x: auto; }
.ivg-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.ivg-table thead th {
    text-align: left; background: #fafbfc; color: #64748b;
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; padding: .8rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.ivg-table tbody td {
    padding: .8rem 1.5rem; border-bottom: 1px solid #f1f5f9;
    color: #334155; vertical-align: middle;
}
.ivg-table tbody tr:last-child td { border-bottom: none; }
.ivg-table tbody tr:hover { background: #fafbfc; }
.ivg-sno { font-weight: 700; color: #64748b; width: 60px; }
.ivg-dl  { width: 110px; }
.ivg-dl-btn {
    display: inline-flex; align-items: center; gap: .35rem;
    background: #1a5c38; color: #fff; font-size: .78rem; font-weight: 600;
    padding: .4rem .8rem; border-radius: 8px; text-decoration: none;
    transition: background .15s; white-space: nowrap;
}
.ivg-dl-btn:hover { background: #144a2d; color: #fff; }
@media (max-width: 640px) {
    .ivg-table thead th, .ivg-table tbody td { padding: .65rem .9rem; }
}
