/* CSS Document */

textarea {
  width: 60%;
}

.chatfrom {
  color: darkred;
  text-decoration: underline;
  font-size: smaller;
  font-weight: 200;
}

.chat {
  color: navy;
  font-size: medium;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

form {
  display: grid;
  grid-template-columns: 120px auto;
  width: 80%;
  background-color: lightgray;
}

label {
  font-size: smaller;
}

.delButton {
  font-size: small;
  margin-right: 5px;
  border: 1px solid;
  background-color: lightcoral;
  text-align: center;
  padding: 12px 0;
}

.dbEntity {
  border: 1px solid;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 6px;
  width: 100%;
}

.dbEntityGrid {
  border: 1px solid;
  display: grid;
  grid-template-columns: 40px 190px auto;
  margin: 0;
  margin-bottom: 6px;
  width: 100%;
}

.chat {
  display: block;
}