/* Slots for final card positions */

#cardSlots {
  margin: 50px auto 0 auto;
  background: #98cfc9;
}

/* The initial pile of unsorted cards */

#cardPile {
  margin: 0 auto;
  background: #e7e3a3;
  text-align:center;
}

#cardSlots, #cardPile {
  height: auto;
  padding: 20px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
}

/* Individual cards and slots */

#cardSlots div, #cardPile div {
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
  background: #fff;
}

#cardSlots div:first-child, #cardPile div:first-child {
  margin-left: 0;
}

#cardSlots div.hovered {
  background: #aaa;
}

#cardSlots div {
  border-style: dashed;
  position: relative;
  text-align:center;
  height: 100px;
  width:150px;
  vertical-align:top;
}

#cardPile div {
  background: #666;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 3px #000;
  position: relative;
  text-align:center;
  height: 100px;
  width:150px;
  vertical-align:top;
}

#cardPile div.ui-draggable-dragging {
  -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
}

/* Individually coloured cards */

#card1.correct { background: green; }
#card2.correct { background: green; }
#card3.correct { background: green; }
#card4.correct { background: green; }
#card5.correct { background: green; }


