body {
  margin: 0px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

#message {
  padding: 5px;
  margin: 5px;
}

#container {
  width: 100%;
  font-size: 18px;
}

#container > * {
  padding: 10px;
}

div#container>div:nth-of-type(odd) {
  background: #f8f8f8;
}

.wordgroup {
  border: 1px solid #d1d1d1;
  margin: 5px;
  float: left;
  display: flex;
}

.word {
  max-width: 200px;
  padding: 14px;
}

.definition {
  width: 100%;
  border-left: 1px dotted red;
  padding: 15px;
}

.delete {
  border-left: none;
  padding: 0px;
}
.delete a:link {
  color: #b3cccc;
  text-decoration: none;
}

.delete a:visited {
  color: #b3cccc;
  text-decoration: none;
}

.delete a:hover {
  color: #b3cccc;
  text-decoration: underline;
}

.info {
  color: blue;
}
.error {
  color: red;
}

#summary {
  padding: 5px;
  margin: 5px;
}

.nav {
  width: 100%;
  background-color: #f1f1f1;
  overflow: hidden;
  font-family: Verdana, Geneva, sans-serif;
  margin: 0px;
}

.nav a {
  float: left;
  color: #666;
  font-size: 17px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.nav a.selected {
  background-color: #4CAF50;
  color: white;
}

.nav a:hover {
  background-color: #555;
  color: white;
}

.form {
  float: left;
  max-width: 500px;
  margin: 2px auto;
  padding: 10px;
  border-radius: 8px;
}

.form fieldset {
  border: none;
}

.form input[type="text"],
.form textarea,
.form select {
  font-family: Georgia, "Times New Roman", Times, serif;
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 4px;
  font-size: 17px;
  margin: 0;
  outline: 0;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: #e8eeef;
  color: #8a97a0;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  margin-bottom: 30px;
}

.form input[type="submit"],
.form input[type="button"] {
  position: relative;
  display: block;
  padding: 19px 39px 18px 39px;
  color: #FFF;
  margin: 0 auto;
  background: #1abc9c;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  width: 100%;
  border: 1px solid #16a085;
  border-width: 1px 1px 3px;
  margin-bottom: 10px;
}

.form input[type="submit"]:hover,
.form input[type="button"]:hover {
  background: #109177;
}

/* Toggle switch structure and styling */
.toggle {
  position: fixed;
  top: 10px;
  right: 0%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background-color: #ccc;
  border-radius: 10px;
  overflow: hidden;
}

/* Hide default radio buttons */
.toggle input[type="radio"] {
  display: none;
}

/* Track styles */
.toggle-label {
  display: inline-block;
  position: relative;
  width: 45px;
  line-height: 30px;
  text-align: center;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 12px;
}

.blurWords {
  color: #555;
}

.neutral {
  color: #555;
}

.blurDefinitions {
  color: #555;
}

/* Thumb styles */
.toggle-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background-color: #4CAF50;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#blurWords:checked ~ .toggle-thumb {
  transform: translateX(0);
}

#neutral:checked ~ .toggle-thumb {
  transform: translateX(50px);
}

#blurDefinitions:checked ~ .toggle-thumb {
  transform: translateX(100px);
}

.blur-effect {
  filter: blur(4px);
}