body {
  background: linear-gradient(135deg, #f3f6fb, #e6eef7);
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

.download-container {
  max-width: 1400px;
  margin: 60px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 50px;
  transition: all 0.3s ease;
}

.download-container:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

h2.ui.header {
  text-align: center;
  font-size: 2em;
  color: #2185d0;
  margin-bottom: 30px;
}

form.ui.form {
  margin-top: 2em;
}

.ui.form .field label {
  font-weight: bold;
  color: #333;
}

.ui.primary.button {
  background-color: #2185d0 !important;
  color: white;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 25px;
  transition: 0.3s;
}

.ui.primary.button:hover {
  background-color: #1678c2 !important;
  transform: translateY(-2px);
}

.ui.green.button {
  border-radius: 8px;
  font-weight: 500;
}

#results-container {
  margin-top: 2em;
  background: #f8f9fb;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  font-family: monospace;
  font-size: 0.95em;
  color: #333;
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

#download-link {
  text-align: center;
  margin-top: 1.5em;
}

.footer-note {
  text-align: center;
  color: #777;
  font-size: 0.9em;
  margin-top: 30px;
}

/* Center the search bar nicely */
.ui.form .two.fields > .field {
  width: 48%;
}

.ui.form .inline.fields {
  justify-content: center;
}

@media (max-width: 768px) {
  .download-container {
	padding: 25px;
  }
  .ui.form .two.fields {
	display: block !important;
  }
  .ui.form .two.fields > .field {
	width: 100% !important;
  }
}
