/**
 * The MIT License (MIT)
 *
 * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
/** main chess style **/
#apptitle {
    font-size: 20px;
}
.log {
    margin-bottom: 10px;
}
table.board td {
    border: 1px solid black;
    padding:10px;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    text-align: center;
    font-size:4em;
}
table.board td.row-label, table.board td.col-label {
    font-size: 2em;
    border:none;
    width:20px;   
}
table.board td.col-label {
    height:20px;
}
.container {
    margin:10px;
}

table.board td.white {
    background-color: #D0D0D0;
}
table.board td.black {
    background-color: #A0A0A0;
}
table.board td.selected {
    background-color:  	#bce8f1;
}
table.board td.accessible {
    background-color:  	#a9dba9;
}
table.board td.pending {
    background-color:  	#dbc59e;
}
.figure {
    cursor: pointer;
}
.but-orientation {
    margin-top:20px;
}
h3.log-h {
    border-top:1px solid silver;
}
.badge-status {
    display:inline-block;
    margin-left:20px;
    padding:5px;
    font-size:1em;
    text-shadow: none;
}
.badge-white-turn {
    font-size: 1em;
    padding:4px;
    background-color: white;
    color:black;
    text-shadow: none;
    border:1px solid black;
    font-weight: normal;
    display: inline-block;
    margin-left: 38px;
}
.badge-black-turn {
    font-size: 1em;
    padding:4px;
    background-color: black;
    color:white;
    text-shadow: none;
    border:1px solid black;
    font-weight: normal;
    display: inline-block;
    margin-left: 38px;
}
.btn {text-shadow: none;}
.select {line-height: inherit;}
.uneditable-input {
    margin-left: 0;
    color: black;
}
span.myturn {
    display: inline-block;
    position:relative;
    left:23px;
    padding:3px;
}
.whitePiece {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    color: white;
}
h1 {
    font-size: 29px;
    line-height: initial;
}
