@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

body {
    font-family: 'Noto Sans', sans-serif;
}

.headliner {
    border-style: none solid solid solid;
    border-radius: 0px 0px 5px 5px;
    border-width: 1px;
    border-color: rgb(206, 212, 218);;
    margin-bottom: 1em;
    background-color: #e9ecef;
}

.btn-tab {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-header {
    margin-left: 10px;
}

.pulse {
    animation: pulse 4s ease-out;
    animation-iteration-count: infinite;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    vertical-align: middle;
}

td.centered, th.centered {
    text-align: center;
}

@keyframes pulse {
    0% {opacity: 0.75}
    50% {opacity: 1.0}
    100% {opacity: 0.5}
}
