.news .container .news-title {
    font-family: var(---outfit-font);
    font-size: var(---title-font);
    color: var(---menu-bg-color);
    margin-bottom: 15px;
}

#name-filter {
    border: none;
    color: var(---menu-bg-color);
    font-family: var(---outfit-font);
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.news-table tbody tr .member-image {
    border: 2px solid green;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.news-table th,
.news-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.news-table tbody tr:nth-child(odd) {
    background-color: var(---top-nav-bg);
}

.news-table th {
    font-weight: bold;
    color: var(---menu-bg-color);
    font-family: var(---outfit-font);
    font-size: var(---org-title);
}

.news-table th .fa-chevron-down {
    font-size: 14px;
}

.news-table th .fa-chevron-up {
    font-size: 14px;
}

.news-table td {
    font-family: var(---lato-font);
    font-size: var(---GON);
    color: var(---font-color);
}

.news-table td a {
    color: var(---font-color);
}

td .file-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

td .date {
    padding: 3px;
    border-radius: 5px;
    color: white;
    background-color: #919191;
}

.view-download {
    display: flex;
    flex-direction: row;
    gap: 45px;
    color: var(---menu-bg-color);
}

/* Media Query for Mobile Screens */
@media screen and (max-width: 768px) {
    .news .container {
        padding: 10px;
    }

    .news .container .links-title {
        font-size: calc(var(---title-font) * 0.8);
        margin-bottom: 10px;
    }

    .news-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border: 0;
    }

    .news-table tbody tr {
        font-size: calc(var(---normal) * 0.9);
    }

    .news-table tbody tr .file-name {
        flex-direction: row;
        gap: 5px;
        align-items: center;
    }

    .news-table td {
        padding: 8px;
        font-size: 14px;
    }
}

/* Media Query for Tablet Screens */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .news .container {
        padding: 15px; /* Adjust padding for tablet screens */
    }

    .news .container .links-title {
        font-size: calc(var(---title-font) * 0.9);
        margin-bottom: 15px;
    }

    .news-table {
        display: table;
        width: 100%;
        border-collapse: collapse;
        overflow-x: initial;
        white-space: normal;
    }

    .news-table tbody tr {
        font-size: calc(var(---normal) * 1);
    }

    .news-table tbody tr .file-name {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .news-table td {
        padding: 10px;
        font-size: 16px;
    }
}
