/******************************************************************************
 *   ______                                                                   *
 *  /       \                                                                 *
 * /$$$$$$  | ________  __    __   ______    ______                           *
 * $$ |__$$ |/        |/  |  /  | /      \  /      \                          *
 * $$    $$ |$$$$$$$$/ $$ |  $$ |/$$$$$$  |/$$$$$$  |                         *
 * $$$$$$$$ |  /  $$/  $$ |  $$ |$$ |  $$/ $$    $$ |                         *
 * $$ |  $$ | /$$$$/__ $$ \__$$ |$$ |      $$$$$$$$/                          *
 * $$ |  $$ |/$$      |$$    $$/ $$ |      $$       |                         *
 * $$/   $$/ $$$$$$$$/  $$$$$$/  $$/        $$$$$$$/                          *
 *                                                                            *
 * @PROJECT    : Book Extension [Bookingonlinepro.com]                        *
 * @AUTHOR     : Azure - Developer                                            *
 * @COPYRIGHT  : © 2019  Bookingonlinepro.com                                 *
 * @LINK       : https://bookingonlinepro.com                                 *
 * @CREATED    :  10/04/2019                                                  *
 ******************************************************************************/

.seat-item {
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    background: gray;
    color: white;
}
.seat-is-booked {
    border: 1px solid #ff0000;
    background: #ff0000;
}
.seat-is-selected {
    border: 1px solid #00ff00;
    background: #008000;
}