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

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

/* Linkek */
a:link, a:visited, a:active {
  text-decoration: none;
  color: #B80F26;transition: all 2s;
}

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

/* ******************************** */
/* MENÜSÁV     (ahol üzenetet írsz) */

/* A szövegmezők, gombok kinézete */
input {
  border: 1px solid #000000;
  border-radius: 2px;
  background-color: #B80F26;
  font-family: Calibri, cursive;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
}

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

/* Menüsáv (egész alsó rész) */
#chat-action-bar {
  border-top: 2px dashed #000000;
  background-color: #FFFFFF;
  color: #000000;
}

/* ******************************** */
/* ÜZENETSÁV (ahol üzenetek vannak) */

/* Üzenetdobozok (mindegyik) */
#chat-messages tr, #chat-messages tr td {
  font-family: Verdana;
  font-size: 14px;
}

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

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

/* Dátum formázása az üzenetnél */
.msg-date {
  color: #999999;
}

/* Név formázása az üzenetnél */
.msg-name {
  font-weight: bold;
}

/* Üzenet szövegének formázása */
.msg-text {
  
}