.button { background-color: #4CAF50; /* Green */ border: none; color: white; /* padding: 15px 32px; */ padding: 5px 10px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 15px; } .file-row { flex-direction: row; display: flex; justify-content: center; align-items: center; margin: 1.5rem; } .file-label { margin: 10px; } .dates { flex-direction: row; display: flex; justify-content: center; align-items: center; margin: 1.5rem; } .start-date { margin: 10px; } .end-date { margin: 10px; } .download-row { flex-direction: row; display: flex; justify-content: center; align-items: center; margin: 1.5rem; } .loading-icon { animation: rotate 2s linear infinite; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }