 /* Naslovna traka modala sa plavim gradientom */
 #downloadModal .modal-header {
     background: linear-gradient(90deg, #007bff, #0056b3);
     color: white;
     justify-content: center;
     border-bottom: none;
 }

 /* Naslov u sredini */
 #downloadModal .modal-title {
     margin: 0 auto;
 }

 /* Pozadina modala */
 #downloadModal .modal-content {
     background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
 }

 /* Uklanjamo footer */
 #downloadModal .modal-footer {
     display: none;
 }

 /* Centrirani linkovi sa slikama i tekstom ispod */
 #downloadModal .modal-body .download-links {
     display: flex;
     justify-content: center;
     gap: 2rem;
     flex-wrap: nowrap;
     /* sprečava prelazak u novi red */
 }

 /* Stil za linkove i slike */
 #downloadModal .modal-body a {
     text-decoration: none;
     color: #007bff;
     text-align: center;
     width: 120px;
 }

 #downloadModal .modal-body a img {
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto 0.5rem;
     border-radius: 8px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
 }

 #downloadModal .modal-body a p {
     margin: 0;
     font-weight: 600;
     font-size: 1rem;
 }

 /* Responsive: za manje ekrane (tablet i ispod) */
 @media (max-width: 768px) {
     #downloadModal .modal-body a {
         width: 90px;
     }

     #downloadModal .modal-body a p {
         font-size: 0.9rem;
     }
 }