:root {
  --primary-color: #00BCD4;
  --secondary-color: #4FC3F7;
  --background-color: #E0F2F7;
  --text-color: #333;
}

body {
  background-color: var(--background-color);
  max-width: 82%;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #2962FF;
}

.bodyline, .forumline {
  background-color: #fff;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 30px;
}

.row1, .row2 {
  background-color: #f9f9f9;
}

.row3 {
  background-color: #eee;
}

input, textarea, select {
  border: 1px solid var(--secondary-color);
  border-radius: 3px;
  padding: 8px;
  font-size: 16px;
}

button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #009ac7;
}