body {
  background-color: #eee;
  font-family: 'Outfit';
  padding: 16px;
  font-size: 16px;
}

a {
  color: #337ab7;
  text-decoration: none;
}
a:hover {
  color: #23527c;
  text-decoration: underline;
}

.btn {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  padding: 8px 14px;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.btn-primary:hover {
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary, .btn-primary:active {
  background-color: #337ab7;
  border-color: #2e6da4;
  color: #fff;
}

.device-wrap, .device-overlay {
  border-radius: 10px;
}

.device-wrap {
  background-color: white;
  border: 1px solid #ccc;
  margin: 16px;
  padding: 16px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.device-img {
  background-color: white;
  background-size: 200px 200px;
  background-position: center;
  width: 200px;
  height: 200px;
}

.device-label {
  margin-top: 8px;
  margin-bottom: -4px;
}

.device-overlay {
  background-color: rgba(0,0,0,0.1);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.device-wrap:hover .device-overlay {
  display: block;
}
.device-wrap:active .device-overlay {
  display: none;
}

#issues,
#systems {
  max-width: 1024px;
}

.issue-wrap,
.system-wrap {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 180px;
  margin: 8px;
  padding: 12px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}
.issue-wrap.selected,
.system-wrap.selected {
  background-color: #6bc5e1; /* was #5bc0de */
}

.issue-label .bi,
.system-label .bi {
  padding-right: 4px;
}

.issue-overlay,
.system-overlay {
  background-color: rgba(0,0,0,0.1);
  border-radius: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.issue-wrap:hover .issue-overlay,
.system-wrap:hover .system-overlay {
  display: block;
}
.issue-wrap:active .issue-overlay,
.system-wrap:active .system-overlay {
  display: none;
}

.contact-form td {
  font-size: 18px;
  padding: 4px;
}
.contact-form input {
  width: 100%;
}

input, textarea {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'system-ui', Roboto, Ubuntu, Cantarell, 'Noto Sans', 'Helvetica Neue', Helvetica, sans-serif, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 18px;
  padding: 4px;
}

textarea#message {
  width: 95%;
  min-width: 128px;
  height: 128px;
  min-height: 128px;
}
