.auto-style-1 {
    background-color: #1d3684
}

.auto-style-2 {
    color: #fff
}

.auto-style-3 {
    overflow-x: auto
}

.auto-style-4 {
    color: #000
}

/* ================= TAB SYSTEM ================= */
.tabs {
    margin: 20px;
    overflow: hidden;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
    width: 100%;
    margin-bottom: 10px;
}



/* Tab Button */
.tab {
    padding: 10px 18px;
    cursor: pointer;
    background: #777;
    color: #fff;
    width: calc(100% / 3);
    font-weight: 600;
    text-align: center;
    user-select: none;
}

.tab:hover {
    background: #555;
}

.tab.active {
    background: #2b2b2b;
}

/* Tab Content */
.tab-content {
    display: none;
    overflow-x: auto;
}

.tab-content.active {
    display: block;
}

/* ================= TABLE ================= */
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;

}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #1d3684;
    color: #fff;
    font-weight: bold;
}

td a {
    color: blue;
    text-decoration: none;
}

td a:hover {
    text-decoration: underline;
}

.fa-file-pdf {
    color: #c00;
    margin-right: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .tab-nav {
        flex-direction: column;
    }

    .tab {
        border-radius: 6px;
    }

    table {
        min-width: 100%;
    }
}