.notices .container {
    padding: 20px;
}

.notices .container .notice-title-content {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

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

.notice-members-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 20px;
    border: 1px solid #ddd;
}

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

.notice-members-table thead th {
    font-family: var(---outfit-font);
    color: var(---menu-bg-color);
    font-size: var(---org-title);
    padding: 10px;
    border-bottom: 1px solid #ddd;
}



.notice-members-table tbody tr {
    font-family: var(---outfit-font);
    font-size: var(---normal);
    border-bottom: 1px solid #ddd;
}

.notice-members-table tbody tr .file-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.notice-members-table td {
    padding: 10px;
    vertical-align: middle;
}



.notice-members-table td a {
    color: var(---text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-members-table td a:hover {
    color: var(---menu-bg-color);
}

.notice-members-table td i {
    margin-right: 5px;
    color: #4caf50;
}

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

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

.notice-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.notice-item .notice-icon .pdf-icon {
    font-size: 20px;
}

.notice-publish p {
    font-size: var(---top-menus);
}

.notice-date span {
    font-size: var(---top-menus);
    background-color: #919191;
    color: white;
    padding: 3px 5px;
    border-radius: 5px;
}

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

    .notices .container .notice-title-content {
        /* flex-direction: row; */
        /* align-items: center; */
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .notices .container .council-members-title {
        font-size: calc(var(---title-font) * 0.8);
        margin-bottom: 10px;
        /* width: 100%; */
    }

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

    .notice-members-table thead th {
        font-size: calc(var(---org-title) * 0.8);
        padding: 8px;
    }

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

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

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

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

    .notices .container .notice-title-content {
        flex-direction: row;
        align-items: center;
        /* justify-content: space-around; */
    }

    .notices .container .council-members-title {
        font-size: calc(var(---title-font) * 0.9);
        margin-bottom: 12px;
    }

    .notice-members-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }

    .notice-members-table thead th {
        font-size: calc(var(---org-title) * 0.9);
        padding: 9px;
    }

    .notice-members-table tbody tr {
        font-size: calc(var(---normal) * 0.95);
    }

    .notice-members-table tbody tr .notice-item {
        width: 80%;
    }

    .notice-members-table tbody tr .notice-date {
        width: 15%;
    }

    .notice-members-table td {
        padding: 9px;
        font-size: 15px;
    }

    .notice-members-table td i {
        font-size: 14px;
    }
}
