body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.instructions-section {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}

.instructions {
  flex: 1;
  text-align: left;
}

.form-container {
  flex: 1;
  text-align: center;
  margin-top: 25px;
}

form {
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  display: inline-block;
}

table {
  margin-bottom: 20px;
}

#loading-message, #running-message {
  display: none;
  font-weight: bold;
  color: blue;
}

.email {
  margin-top: 50px;
}

