/* (A) WHOLE PAGE */
html, body {
  margin: 0;
  padding: 0;
}
* {
  font-family: arial, sans-serif;
  font-size: 16px;
}
.hide { display: none !important; }
.blinker {
  -webkit-animation: bgblink 3s;  /* Chrome, Safari, Opera */
  -webkit-animation-iteration-count: infinite;  /* Chrome, Safari, Opera */
}
@-webkit-keyframes bgblink {
  from {background-color: #fff;}
  50% {color:rgba(0,255,0,0.3);}
  to {background-color: #fff;}
}
@keyframes bgblink {
  from {background-color: #fff;}
  50% {background-color:rgba(0,255,0,0.3);}
  to {background-color: #fff;}
}
#userList {
  box-sizing: border-box;
  float: left;
  position: absolute;
  right: 0;
  background: #FFF;
  z-index: 10;
}
#userList #listAct {
  background-color: #025025;
  padding: 3px 5px;
  font-size: 12px;
  border-radius: 0 0 0 6px;
  color: #FFFFFF;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
}
#userList #uidsCheck {
  padding-top: 20px;
  border: 1px solid #EEE;
  border-radius: 0 0 0 6px;
  overflow: hidden;
}
#userList label {
  display: block;
  align-items: stretch;
  padding: 0 3px;
  border-bottom: 1px solid #eee;
  font-size: 11px;
}
#userList input[type="checkbox"] {
  width: 10px;
  height: 10px;
}
#userList span {
  font-size: 11px;
}
#addUids {
  font-size: 11px;
  background-color: #00F;
  color: #FFF;
  cursor: pointer;
  padding: 3px 5px;
}
#convTab, #userTab {
  position: fixed;
  top: 0;
  margin: 0 auto;
  background-color: #025025;
  padding: 3px 5px;
  font-size: 12px;
  border-radius: 0 0px 7px 7px;
  left: 50%;
  transform: translate(-50%,0);
  color: #FFFFFF;
}
#convTab a, #userTab a {
  font-size: 12px;
  color: #FFFFFF;
  text-decoration: unset;
}
#chatShow, #chatForm { box-sizing: border-box; }

/* (B) CHAT HISTORY */
#chatShow { padding-bottom: 60px; }
.chatRow, 
.convRow, 
.chatError,
.chatLost {
  display: block;
  align-items: stretch;
  padding: 3px 5px;
  border-bottom: 1px solid #eee;
}
.convRow > div {
  cursor: pointer;
}
.chatName, .chatMsg { padding: 4px; display: inline-block; }
.chatName {
  background: #025025;
  color: #fff;
  margin-right:4px;
  position: relative;
}
.convRow .chatMsg {
  font-size: 12px;
  padding: 0 4px;
  position: absolute;
  margin: 0;
}
.convRow .convName {
  font-size: 14px;
  padding: 0;
  margin: 0 0 -3px;
}
.online {
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #666;
  top: -4px;
  right: -4px;
  border-radius: 10px;
  border: 1px solid #444;
}
.online.active {
  background-color: #00F700;
  border: 1px solid #00FF00;
}
.chatDate {
  padding: 12px 5px 5px;
  float: right;
  width: auto;
  color: #555;
  font-size: 12px;
}
.chatError, .chatLost {
  color: red;
  border: 0;
}

/* (C) CHAT FORM */
#chatForm {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  padding: 10px;
  background: #eee;
}
#chatMsg { width: 90%; }
#chatGo { flex-grow: 1; }
