.smartable {
    width: 100%;
    border-bottom: 2px solid rgb(226, 232, 236);
}


.smartable th {
    color: #666;
}
.smartable td, .smartable th {
    text-align: center;
    padding: 2px 5px;
    margin: 2px 5px;
}

.smartable thead {
    border-bottom: 1px solid rgb(226, 232, 236);
}

.smartable tbody tr:nth-child(odd){
    background-color: rgb(232, 240, 243);
    /* color: #fff; */
}

/*
//// Infobar
*/

.smartable-infobar, .smartable-infobar .fas {
    text-align: center;
    color: rgb(224, 145, 54);
    font-weight: bold;    
    padding: 5px;
}

/*
//// Pagebar
*/

.smartable-pagebar {
    padding: 10px;
    text-align: center;
}
.smartable-pagebar a {
    padding: 5px 10px;
    border: 1px solid rgba(182, 178, 178, 0.3);
    font-family: "Montserrat";     
    text-decoration: none;
    color: rgb(121, 166, 202);
    background-color: rgb(231, 237, 241);
    
}
.smartable-pagebar a:first-of-type {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.smartable-pagebar a:last-of-type {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.smartable-pagebar a:hover {
    background-color: rgb(244, 246, 248);
}
.smartable-pagebar .active {
    color: white;
    background-color: rgb(105, 139, 173);
    cursor: default;
}
.smartable-pagebar .active:hover {
    background-color: rgb(105, 139, 173);
}

/*
//// Miscs
*/
.smartable .fa-toggle-on, .smartable .fa-toggle-off {
    font-size: 22px;
    padding: 3px;    
    margin: 0px;
    cursor: pointer;
}
.smartable .fa-toggle-on:hover, .smartable .fa-toggle-off:hover {
    padding: 0px;    
    font-size: 24px;
}
.smartable .fa-toggle-on {
    color: rgb(87, 181, 224);
}
.smartable .fa-toggle-on:before {
    content:"\f205";
}
.smartable .fa-toggle-off {
    transform: scale(-1, 1);
    color: rgb(252, 133, 133);
}
.smartable .fa-toggle-off:before {
    content:"\f205";    
}

.smartable .icon-badge {
    color: rgb(51, 149, 194);
    padding: 4px 6px;        
}

.smartable .profile-picture font {
    text-transform: capitalize;
    margin-left: 4px;
    color: #407dbf;
    font-weight: bold;
}
.smartable .profile-picture img {
    width: 24px; 
    height: 24px; 
    border-radius: 50%;
    transition: 0.2s width, 0.2s height;
}
.smartable .profile-picture img:hover{
    width: 60px; 
    height: 60px;     
}

.smartable td b, .smartable td .label-success, .smartable td .label-error {
    color: rgb(51, 149, 194);
    font-size: 14px;
    font-family: "Montserrat";
}

.smartable td .label-error {  
    color: rgb(224, 164, 33);
}

.smartable .icon-tooltip {
    color: rgb(51, 149, 194);
    padding: 4px 4px;
    font-size: 15px;
    cursor: help;
}

.smartable .icon-btn, .smartable .icon-error, .smartable .icon-label {
    color: rgb(51, 149, 194);
    margin: 0px;
    padding: 4px 4px;
    font-size: 15px;
    cursor: pointer;
    background-color: aliceblue;
    border: 1px solid rgb(207, 221, 226);
    border-left: none;
}
.smartable .icon-error {
    color: rgb(228, 87, 87);
    cursor: auto;
}
.smartable .icon-label {
    cursor: auto;
}
 
.smartable .icon-btn:hover {
    color: rgb(77, 174, 219);    
    background-color: aliceblue;
}
.smartable .icon-btn:active {
    color: aliceblue;
    background-color: rgb(77, 174, 219);     
}
.smartable .icon-btn:first-of-type, .smartable .icon-error:first-of-type {    
    padding-left: 10px;
    border-left: 1px solid rgb(207, 221, 226);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.smartable .icon-btn:last-of-type, .smartable .icon-error:last-of-type {    
    padding-right: 10px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}


/*
//// INPUTS
*/
.smartable input {
    width: 100%;
    background-color: rgba(0,0,0,0);
    background-image: none;
    border: 1px solid transparent;
    font-size: 13px;
    margin: -5px;
    padding: 3px;
    border-radius: 5px;    
    text-align: center;
}
.smartable input:focus {    
    cursor: text !important;
    background-image: linear-gradient(#eeeeee, #fcfcfc, #fcfcfc);
    border: 1px solid rgb(151, 151, 151);    
}        

.smartable input:hover {    
    cursor: pointer;
    background-color: #d0dee42d;
    border: 1px solid rgba(0, 0, 0, 0.137);    
}