body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 1%;
}

.container {
  /* Removed centered max-width for full page usage */
  width: 98%;
  padding: 1%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
  color: #333;
  margin-bottom: 12px;
}

form, table {
  width: 100%;
  margin-bottom: 12px;
}

table {
  border-collapse: collapse;
  margin-bottom: 12px;
}

/* Add pastel styling for table headers */
table th {
  background-color: #dbe5f6; /* pastel blue */
  color: #333;
}

th, td {
  padding: 5px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

button,
input[type="submit"] {
  background-color: #5380cd; /* sky blue */
  color: #fff; /* white text */
  border: none;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
}

button.btn {
    align-items: center;
}

button:hover,
input[type="submit"]:hover {
  background-color: #0e58ec; /* deep sky blue */
}

a {
  color: #2c72c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.button {
  display: inline-block;
  background-color: #5380cd;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
}

a.button:hover {
  background-color: #0e58ec;
  text-decoration: none;
}

/* Align form controls */
input[type="text"],
input[type="number"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 2px;
  margin-bottom: 0px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

.excel-form-container p label {
  display: inline-block;
  width: auto; /* adjust width as needed */
  vertical-align: top;
}
