body, html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Arial';
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    background-color: #333;
}
input[type=text],
input[type=password],
#location-selector,
#doctor-selector,
.fancy-selector {
    padding: 10px 15px;
    border: none;
    height: 17px;
    background-color:#e1edff;
    margin-right: 5px;
}
#location-selector,
#doctor-selector,
.fancy-selector  {
    height: auto;
}
table {
    background-color: #dadada;
    border-collapse: collapse;
}
table td {
    padding: 5px 10px;
    text-align: center;
}
.btn {
    background-color: #4684ab;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    cursor: pointer;
}
.inputs-holder {
    padding: 20px;
    display: flex;
    background-color: #000000;
}
.filter-holder {
    color: #fff;
}
#locations-holder,
#doctors-holder {
    display: inline-block;
}
#aggr-holder,
#refresh-holder {
    width: 100px;
    text-align: center;
}
#refresh-holder {
    width: 120px;
}

h5 {
    margin: 25px 5px 0;
    color: #fff;
}
th {
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
}
.by-status-reason-holder {
    padding: 0 20px 20px;
}
.filter-link {
    cursor: pointer;
    padding: 5px;
    display: inline-block;
    color: #2639b0;
    font-weight: bold;
}
#tag-filter-holder {
    display: flex;
}
.tag-filter {
    color: #000;
    background-color: #c6f5c5;
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 10px;
}
.tag-filter .close-btn {
    cursor: pointer;
    font-weight: bold;
}
.date-picker {
    position: relative;
}
.date-picker .clear-btn {
    cursor: pointer;
    padding: 5px;
    color: #717171;
    position: absolute;
    top: 3px;
    right: 11px;
}
.logout-btn {
    margin-left: auto;
}
.comment {
    padding: 10px 5px;
}
.tab-contents {
    position: relative;
    display: none;
}
.tab-contents.active {
    display: block;
}
.tab-button, .pagination-btn {
    cursor: pointer;
    background-color: #dadada;
    padding: 10px;
    margin: 4px;
    color: #333;
    font-weight: bold;
    border-bottom: 3px solid #dadada;
}
.tab-button.active {
    cursor: default;
    background-color: #85b5ff;
    border-bottom: 3px solid black;
}
.tab-buttons, .pagination-holder {
    display: flex;
}
#comment-holder {
    padding: 5px 10px;
}
#raw-table-holder table td {
    color: #333;
}
.pagination-btn.disabled {
    cursor: default;
    background-color: #ff7777;
}
.loader-overlay {
    align-items: center;
    justify-content: center;
    top: 0;
    background-position: 50% 54%;
    background-repeat: no-repeat;
    background-image: url(/loader.gif);
    position: fixed;
    background-color: #dadadaad;
    width: 100%;
    height: 100%;
    display: none;
}

.loader-overlay.shown {
    display: flex;
}