/**
 * This file is part of the Painter package.
 *
 * (c) Ondřej Záruba <info@zaruba-ondrej.cz>
 *
 * For the full copyright and license information, please view the license.md
 * file that was distributed with this source code.
 */

.painter-container {
    margin-top: 25px;
}

.painter-container table  {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    display: block;
}

.painter-container table td {
    border: 2px solid #ffffff;
    width: 20px;
    height: 20px;
}

.painter-container table td.empty {
    background-color: #cbcbcb;
}

.painter-container table td.target {
    background-color: #989898;
}

.painter-container table td.hit {
    background-color: #009906;
}

.painter-container table td.miss {
    background-color: #ff6363;
}

.painter-message-box {
    margin: 15px 0;
}