body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  background-color: #c9e0f5;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: #004085;
  margin-top: 20px;
}

form { 
  width: 40%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #004085;
}

select, button {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  background-color: #004085;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #003366;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #004085;
  color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.hyperlink {
  color: #007bff;
  text-decoration: underline;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}

.button {
  background-color: #004085;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.button:hover {
  background-color: #003366;
}

@media (max-width: 768px) {
  form, .button-container {
    width: 95%; /* Reduce width for smaller screens */
  }

  .button-container {
    flex-direction: column;
  }
  
  table {
    font-size: 0.9em; /* Slightly smaller font size on smaller screens */
  }
  
  th, td {
    padding: 8px; /* Reduce padding for smaller screens */
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em; /* Adjust font size for very small screens */
  }
  
  button {
    font-size: 0.9em; /* Slightly smaller text size on very small screens */
  }
}