#meeting-select {
    min-width: 150px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    color: #000;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
    font-size: 18px;
    padding: 8px 40px 9px 25px;
    border-radius: 9px;
    transition: all ease-in-out 350ms;
}
#meeting-select:focus,
#meeting-select:hover {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.c-year_box span.c-text {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.36;
    display: block;
}
table.meetings-table thead {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
    background: linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    background: -moz-linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    background: -webkit-linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    background: transparent linear-gradient(90deg, #322B80 0%, #C20E1A 100%);
    border-radius: 50px;
}
table.meetings-table tr {
    border-collapse: collapse;
}
table.meetings-table th {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    text-align: left;
    padding: 1rem 1.5rem;
}
table.meetings-table th h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    text-align: left;
}
.meeting-group table.stock-table thead th:last-child {
    text-align: right;
}
a.download-link {
    background: linear-gradient(116deg, rgb(131, 27, 71) 0%, rgb(50, 43, 128) 50.5%, rgb(0, 157, 224) 100%) transparent;
    color: #fff;
    border: none;
    padding: 10px 28px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 6px rgba(40, 167, 69, 0.2);
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
}
.meeting-group table.stock-table thead th:last-child {
    text-align: right;
}
.stock-table td strong {
    font-weight: 600;
}
.stock-table td .attachment-item strong {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    display: block;
}
.stock-table td .attachment-item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: baseline;
    gap: 15px;
}
.strong-attachments {
    font-size: 1.175rem;
    font-weight: 600;
    color: #009de0;
    display: block;
    padding: 15px 0;
}
.attachments-list.mt-2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    /* box-shadow: rgb(0 0 0 / 9%) 0px 0px 16px 0px; */
    border: 2px solid #d0d0d0;
}
table.stock-table.meetings-table {
    background: #fff;
    box-shadow: rgb(0 0 0 / 9%) 0px 0px 16px 0px; 
    
}
a.download-link:hover{
    opacity: 0.7;
}
.no-data {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: rgb(0 0 0 / 9%) 0px 0px 16px 0px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #f7f7f7;
    justify-content: center;
    font-weight: 500;
    color: #000;
    font-size: 18px;
}
/*ipad (tablet)*/
@media (max-width: 1024px) {
    table.stock-table.meetings-table {
        min-width: 100%;
    }
}
/*iphone5 (small smartphone)*/
@media (max-width: 767px) {
    table.stock-table.meetings-table {
        min-width: 800px;
    }
    .meeting-group {
        overflow-y: scroll !important;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    table.meetings-table th h3, table.meetings-table th {
        font-size: 18px;
    }
    .no-data {
        font-size: 14px;
    }
}