
body {
  background-color: #ffc0cb; /* Pink background color */
  font-family: Arial, sans-serif;
}

form {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border: 3px solid #ff66b2; /* Increased outline for the form */
  border-radius: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px; /* Increased font size */
  font-weight: bold; /* Bold text */
  color: #333; /* Darker text color */
}

input, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 2px solid #ff66b2; /* Outline for the input fields */
  border-radius: 5px;
  font-size: 16px; /* Increased font size */
  font-weight: bold; /* Bold text */
  color: #555; /* Darker text color */
}

input[type="submit"] {
  background-color: #ff3399; /* Pink color for the submit button */
  color: white;
  cursor: pointer;
  font-weight: bold; /* Bold text */
}

input[type="submit"]:hover {
  background-color: #ff007f; /* Darker pink color on hover */
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px; /* Add some space between form and table */
  border: 3px solid #ff66b2; /* Increased outline for the table */
}

th, td {
  border: 2px solid #ff66b2; /* Outline for table cells */
  padding: 15px;
  text-align: left;
  font-weight: bold; /* Bold text */
  color: #333; /* Darker text color */
}

th {
  background-color: #ff3399; /* Table header background color */
  color: white;
}
