div.seatCharts-container {
    /*min-width: 700px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.seatCharts-cell {

    height: 32px;
    width: 32px;
    margin: 2px;
    float: left;
    text-align: center;
    outline: none;
    font-size: 13px;
    line-height: 16px;
    color: black;

}

div.seatCharts-seat {
    background-color: #594ae2;
    color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: default;
}

div.seatCharts-seat:focus {
    border: none;
}

div.seatCharts-space {
    background-color: white;
}

div.seatCharts-row {
    height: 50px;
}

div.seatCharts-row:after {
    clear: both;
}

div.seatCharts-seat.selected {
    background-color: #4baccc;
}

div.seatCharts-seat:hover {
    background-color: #4baccc;
    border-color: #4baccc;
    border-width: 2px;
}


div.seatCharts-seat.available {
    background-color: #518720;
}

div.seatCharts-seat.unavailable {
    background-color: #e4e4e4;
    cursor: not-allowed;
}

ul.seatCharts-legendList {
    list-style: none;
}

li.seatCharts-legendItem {
    margin-top: 10px;
    line-height: 2;
}