/* © 2015 E-Cset, alapértelmezett stílus */

/* Linkek */
a:link, a:visited, a:active {
  text-decoration: none;
  color: #000000;
}

/* Linkek, amik felé az egeret visszük */
a:hover {
  text-decoration: none;
  color: #453E38;
}

/* Ebben a div-ben van benne az egész cset.
Ha átméretezed, akkor méreteződik az egész. */
#chat-border {
  border: 2px solid #453E38;
  width: 280px;
  height: 360px;
  display: inline-block;
  text-align: center;
}

/* ***************************** */
/* ********** MENÜSÁV ********** */

/* A szövegmezők kinézete */
input {
  border: 1px dotted #000000;
  border-radius: 0px;
  background-color: #453E38;
  font-family: Georgia, cursive;
  font-size: 12px;
  font-weight: 400;
  color: #dddddd;
}

/* Csak a gombok kinézete */
input[type=submit], input[type=button] {
  border-radius: 0px;
  background-color: #453E38;
  box-shadow: -1px -1px 2px #999999 inset;
  position: relative;
  top: -1px;
  left: 2px;  color: #8A7D71;
}
/* Gomb lenyomás kinézete */
input[type=submit]:active, input[type=button]:active {
  box-shadow: 1px 1px 2px #999999 inset;
}

/* Menüsáv */
#chat-action-bar {
  border-top: 1px solid #453E38;
  background-color: #BBAEA2;
}

/* ***************************** */
/* ********* ÜZENETSÁV ********* */

/* Üzenetmezők */
#chat-messages tr, #chat-messages tr td {
  font-family: Verdana;
  font-size: 14px;
}

/* Páros számú üzenetek */
#chat-messages tr:nth-child(odd) {
  background-color: #8A7D71;
}

/* Páratlan számú üzenetek */
#chat-messages tr:nth-child(even) {
  background-color: #BBAEA2;
}

/* Dátum megjelenése az üzenetnél */
.msg-date {
  color: #453E38;
}

/* Név megjelenése az üzenetnél */
.msg-name {
  font-weight: bold;
}