/* styles.css */
html {
  font-size: 1px; /*for using REM units*/
}

body {
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 10rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
    background: #fff;
  color: #000;
  margin: 0,5px;
  padding: 0px;
}

a {
  color: #000;
  text-decoration: underline;
}

nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1em 2em;
}

nav a {
  color: #000;
  text-decoration: underline;
  margin-right: 1em;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  margin-top: 1.5em;
}

input, textarea, select, button {
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0.5em;
  font-size: 1em;
}

hr {
  border: 1px solid #eee;
}

.container {
  max-width: 800px;
  margin: 2em auto;
  padding: 2em;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
a {
  color: #000;              /* All links are black text */
  text-decoration: underline; /* All links underlined */
  transition: text-decoration 0.2s;
}

a:hover,
a:focus {
  text-decoration: none;      /* Underline disappears on hover/focus */
}

    #feedbackOutput {
      margin-top: 1rem;
      padding: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-family: Arial, sans-serif;
      max-width: 600px;
      background-color: #f9f9f9;
    }
    .feedback-entry {
      margin-bottom: 1rem;
      padding: 0.5rem;
      border-bottom: 1px solid #ddd;
    }
    .timestamp {
      font-size: 0.85rem;
      color: #666;
    }
    .feedback-type {
      font-weight: bold;
      color: #2a7ae2;
    }
