 .btn-download:hover {
     background: linear-gradient(135deg, #01579b, #003366);
     color: white;
     transform: scale(1.05);
 }

 .btn-download:active {
     transform: scale(0.97);
     box-shadow: 0 2px 6px rgba(0, 0, 128, 0.2);
 }

 .year-download-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 0.25rem;
     /* reduced gap */
 }

 .banner img {
     width: 100%;
     height: auto;
 }

 .btn-success {
     background: #4CB748 !important;
     color: white !important;
 }

 .text-success {
     color: #4CB748 !important;
 }

 .btn-outline-success {
     border: 1px solid #4CB748 !important;
     color: #4CB748;
 }

 /* Responsive fix */
 @media (max-width: 576px) {
     .btn-download {
         width: 100%;
         text-align: center;
     }

     .d-flex.justify-content-between {
         flex-direction: column;
         align-items: stretch;
     }
 }