@charset "utf-8";
/*
   Author: Tan Xian Guang
   Filename: Feedback.css

*/


/* Navigation Styles */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  display: inline-block;
}

li a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Footer Styles */

footer {
  width: 100%;
  height: 12vh;
  background-color: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

/* Form Layout Styles */

form#survey {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

form#survey>fieldset {
  border-radius: 20px;
  -webkit-flex: 1 1 300px;
  flex: 1 1 300px;
  font-size: 0.85em;
  padding: 10px;
  margin: 10px;
}

div.formRow {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 7px 0px;
}

div.formRow>* {
  -webkit-flex: 1 1 150px;
  flex: 1 1 150px;
}

/* Legend Styles */

legend {
  background-color: grey;
  color: white;
  padding: 5px;
}

/* Text Area Styles */

textarea {
  margin-top: 10px;
  height: 100px;
  width: 95%
}