/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFF8E1; /* soft cream */
  color: #333;
  margin: 0;
  padding: 2rem;
}

h1, h2, h3 {
  color: #3F51B5; /* indigo */
}

h3 {text-align: center;}

table {width: 100%; border-collapse: collapse;}
tr {width: 33%}

table, th, td {
      border: 1px solid black; /* Sets a 1px solid black border */
    }

form {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

input[type="text"],
textarea,
select {
  width: 40%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #cedff0;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #F57C00; /* saffron */
  background-color: #fff;
}

input[type="checkbox"] {
            transform: scale(2);
            margin: 15px;
        }

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #F57C00; /* saffron */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e65100;
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

#res {
    border: 1px solid #999;
    border-radius: 12px;         /* Rounded corners */
    background-color: #cedff0;   /* Light blue background */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
    padding: 15px;
    margin: 15px;
  }

#res:empty {
  display: none;
}