body {
  font-family: arial;
}
textarea {
  width: 400px;
  height: 80px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}
.grid-item {
  text-align: center;

}
.grid-item > img {
  object-fit: cover;
  max-height: 30vh;
  cursor: pointer;
  border-style: dotted;
  border-width: 0px;
}
.grid-item > img:hover {
  filter: drop-shadow(8px 8px 10px gray);
}
#header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  background-color: transparent;
}
#header-container {
  display: none;
}
#persistency-service-container {
  display:none;
}
#grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding-top: 50px;
  width: 100%;
  height: 90%;
}
#preview-container {
  position: absolute;
  width: 1px;
  height: 1px;
  top: -100px;
  left: -100px;
  display: none;
}
#editor-container, #editor-background-container, #profile-manager-container, #board-manager-container {
  position: fixed;
  background-color: #fff;
  border-radius: 20px;
  opacity: 0.8;
  width: 450px;
  top: 30%;
  left: 50%;
  margin-top: -110px; /* Negative half of height. */
  margin-left: -200px; /* Negative half of width. */
  border-style: solid;
  border-width: medium;
  border-color: #999;
  display: none;
}
#editor-container {
  height: 350px;
}
#editor-background-container {
  height: 230px;
}
.editor {
  margin-top: 10px;
  text-align: center;
}
.editor-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
#profile-manager-info, #profile-manager-options {
  padding-top: 20px;
}
#profile-manager-info {
  padding-right: 100px;
}
.profile-manager-info-item {
  padding-bottom: 20px;
}
.profile-manager-options-item {
  padding-bottom: 5px;
}
#board-manager-container, #profile-manager-container {
  width: 420px;
  height: 260px;
  padding: 10px;

}
#board-management-options {
  text-align: center;
  padding-top: 20px;
  padding-right: 10px;
}
#board-management-options > div {
  text-align: center;
  padding-bottom: 5px;
}
#board-management-options-2 {
  padding-top: 40px;
  padding-left: 20px;
}
#board-management-options-2-list,
#board-management-options-2-list-open,
#board-management-options-2-list-delete,
#board-management-options-2-save {
  display:none;
}
.button {
  background-color: #4CAF50;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  padding: 14px 40px;
  width: 150px;
  cursor: pointer;
}
.mini-button {
  background-color: #4CAF50;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 15px;
  padding: 6px 18px;
  cursor: pointer;
}
#board-name {
  padding: 6px;
  margin-top: 6px;
  font-size: 30px;
}
#dice, #pause, #pen, #picture, #folder, #floppy, #profile {
  font-size: 30pt;
  cursor: pointer;
  color: #000;
  background-color: transparent;
  padding-left: 10px;
  padding-right: 10px;
}
#folder {
  display: none;
}
#board-info {
  padding-left: 100px;
}
#globe {
  font-size: 10pt;
  cursor: pointer;
  background-color: transparent;
  padding-left: 10px;
}
#profile {
  position: absolute;
  right: 0px;
}
#profile-image {
  width: 32px;
  padding-top: 10px;
}
#picture {
  display: none;
}
#editor {
  position: absolute;
  top: 0px;
  left: 0px;
}
#editor > img {
  padding-right: 30px;
  width: 50px;
}
#editor > img:hover {
  filter: contrast(400%);
}
.verified {
  color: #0a0;
}
.unverified {
  color: #a00;
}
.img {
  width: 200;
  height: 200;
  border-radius: 50%;
}