/* styles.css */
.container1 {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #3E497A;
}

.form-group {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
}

select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
}

.sheet-content {
  margin-top: 20px;
  padding: 20px;
  background-color: #FAFAFA;
  border: 2px solid #3E497A;
  font-size: 1.2em;
  display: none; /* Hidden until generated */
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #3E497A;
}

th, td {
  padding: 10px;
  text-align: center;
}

button1 {
  display: block;
  margin: 20px auto;
  padding: 12px 24px; /* Slightly increased padding */
  font-size: 1em;
  background-color: #3E497A;
  color: white;
  border: none;
  border-radius: 5px; /* Added rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for background and scale */
}

button:hover {
  background-color: #2b3e70; /* Darker shade on hover */
  transform: translateY(-2px); /* Lift effect on hover */
}