/**
 * Plugin CSS status bar for jExcel Pro / jSpreadsheet
 * 
 * @version 1.3.2
 * @author Guillaume Bonnaire <contact@gbonnaire.fr>
 * @website https://repo.gbonnaire.fr 
 * 
 * 
 * @license This plugin is distribute under MIT License
 */

.jexcel_content {
    padding-bottom: 0px!important;
}

.jexcel_statusbar {
    position: sticky;
    bottom: 0px;
    left: 0px;
    background-color: #F3F3F3;
    border: 1px solid #CCCCCC;
    width: calc(100% - 1px);
    height: 26px;
    display: flex;
    margin-left: 1px;
    margin-right: 1px;
}

.jexcel_statusbar * {
    font-size:  12px;
    color: #666;
    padding: 2px;
}

.jexcel_statusbar .jexcel_statusbar_addrows button {
    background-color: #F3F3F3;
    border: 1px solid #CCCCCC; 
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-right: 2px;
    padding: 1px 3px 1px 3px;
    height: 20px;
    width: 30px;
}

.jexcel_statusbar .jexcel_statusbar_addrows input {
    width: 50px;
    height: 16px;
    display: inline-block;
    border: 1px solid #CCCCCC;
    padding: 1px 3px 1px 3px;
}

.jexcel_statusbar .jexcel_statusbar_addrows span {
    font-size:  13px;
}

.jexcel_statusbar .jexcel_statusbar_information {
    flex-grow: 100;
    text-align: right;
    vertical-align: middle;
    font-size:  13px;
    padding-right: 5px;
}

.jexcel_statusbar .jexcel_statusbar_information .divisor:before {
    content: " | ";
}
.jexcel_statusbar .jexcel_statusbar_information .divisor {
    color: #CCCCCC;
    margin-left: 2px;
    margin-right: 2px;
        
}

