.container {
    max-width: 1200px;
    margin: 0 auto;
}

.year-filter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.year-filter label {
    margin-right: 10px;
    font-size: 16px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: white;
    min-width: 160px;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-select:hover {
    border-color: #aaa;
}

.dropdown-icon {
    margin-left: 10px;
    color: #0095da;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    padding: 10px 20px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.card-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fill, minmax(500px, 1fr)); */
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 30px;
    overflow: hidden;
    flex-basis: calc(50% - 10px);
}

.financial-title {
    color: #333;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

.period {
    color: #0095da;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.link-list {
    margin-bottom: 30px;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: #555;
}

.link-item:hover {
    color: #0095da;
}

.box-grid_statement .icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.box-grid_statement .icon:hover {
    opacity: 1;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, #4b2994, #dd2c33);
    margin: 20px 0;
    border-radius: 2px;
}

.loading {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #555;
    display: none;
}

.loading.active {
    display: block;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
.box-grid_statement .card-grid {
    display: none;
}
.box-grid_statement .card-grid:first-child {
    display: flex;
}
.c-card-flex {
    display: flex;
    gap: 20px;
}
.c-card-flex .c-1, .c-card-flex .c-2 {
flex-basis: calc(50% - 10px);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
/*ipad (tablet)*/
@media (max-width: 1024px) {
    .c-card-flex .c-1, .c-card-flex .c-2 {
        flex-basis: 100%;
    }
    .card {
    flex-basis: 100%;
}    
}
/*iphone5 (small smartphone)*/
@media (max-width: 767px) {
    .card {
    flex-basis: 100%;
}
.c-card-flex {
     flex-direction: column;
     gap: 0;
}
 .year-filter {
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
}
 button#download-all-btn {
     flex-basis: 100%;
     justify-content: center;
     margin: 0;
}
 .dropdown {
     flex-basis: 85%;
}
 .year-filter label {
     text-align: left;
     flex-basis: 6%;
     font-size: 21px;
     font-weight: 600;
}
}