/*
 * Hall styles
 */

#myHall {
    border-collapse: collapse;
    border-spacing: 0px;
    /*margin: auto;*/
}
#myHall td.place {
    background: #CCCCFF;
    color: silver;
    text-align: center;
    font-weight: normal;
    /*border: 1px solid black;*/
    min-width: 18px;
}
#myHall td.place.selected {
    background: #FF6699 !important;
    color: white;
    text-align: center;
    font-weight: bolder;
    border-bottom-color: white;
    border-right-color: white;
    min-width: 18px;
}
/*#myHall td.place:hover:after {
    content: attr(title);
    position: absolute;
    bottom: 130%;
    left: 20%;
    background: #ffcb66;
    padding: 5px 15px;
    color: black;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}*/
#myHall td.row {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    /*font-size: 10px;*/
    color: brown;
    line-height: 20px;
    text-align: center;
    background: khaki;
}
#myHall td.text {
    width: 20px;
    height: 20px;
    color: blue;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
    background-color: #E1D3CC;
}


/*
 * DataTable styles
 */
table.display {
	margin: 0 auto;
	width: 100%;
	clear: both;
        padding: 0;
        border-collapse: collapse;
}

table.display thead th {
	padding: 3px 10px;
	border-bottom: 1px solid black;
	font-weight: bold;
}

table.display tfoot th {
	padding: 3px 10px;
	border-top: 1px solid black;
	font-weight: bold;
}

table.display td {
	padding: 3px 10px;
}


/*
 * DataTable row styles
 */
table.display tbody tr:nth-child(2n) {
	background-color: #ddffdd80;
}

table.display tbody tr:nth-child(2n+1) {
	background-color: #eeffee80;
}

table.display tbody tr:hover {
	background-color: #E6FF99;
        color: black;
}

.click {
	cursor: pointer;
}
