body > div.container-fluid {
    padding: 0px;
}

body {
    padding-top: 70px;
    font-size: 14px;
    font-family: "Open Sans", Calibri, Candara, sans-serif;
}

.adminNavBar {
    z-index: 1000;
}

.jobHeaderBar {
    z-index: 500;
}

.navbar-inverse {
    background-color: #007fff;
    border-radius: 0;
}

.navbar-inverse .navbar-nav > .active > a:hover {
    color: #ffffff;
    background-color: #66a3e0;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #0066cc;
}

.navbar-inverse .navbar-text {
    color: #ffffff;
}

.navbar-inverse .navbar-nav > li > a {
    color: #ffffff;
}

.navbar-inverse .navbar-nav > li > a:hover {
    color: #ffffff;
    background-color: #66a3e0;
}

.navbar-inverse .navbar-nav > li > a {
    color: #ffffff;
}

.adminNavBar .badge {
    color: #007fff;
    background-color: #ffffff;
}

.navItemSearch a {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.navItemSearch button {
    color: #ffffff;
    background-color: #007fff;
    border-color: #000000;
}

.navItemSearch input {
    width: 120px !important;
}

.navbar-nav .withBadge {
    text-align: center;
}
.navbar-nav .withBadge a {
    padding-top: 5px;
    padding-bottom: 5px;
}

.jobHeaderBar {
    top: 50px !important;
}

.jobTable > thead > tr > th {
    text-align: center;
}

.jobTable {
    font-size: 14px;
}

.tableButton,
.tableButton:hover {
    color: #ffffff;
    background-color: #007fff;
    border: 1px solid transparent;
    border-radius: 0;
}

table.jobTable td.clickable a {
    text-decoration: none;
    color: black;
}

table.jobTable td.jobId,
table.jobTable td.jobId a {
    font-weight: bold;
    text-decoration: none;
    color: red;
}

table.jobTable td.pendingJobId,
table.jobTable td.pendingJobId a {
    font-weight: bold;
    text-decoration: none;
    color: black;
}

table.jobTable tr:hover td.jobId,
table.jobTable tr:hover td.jobId a {
    background-color: #007fff;
    color: black;
}

table.jobTable td.clickable:hover {
    cursor: pointer;
    text-decoration: underline;
}

table.jobInfoTable thead {
    background-color: #ccc;
}

table.jobInfoTable th {
    text-align: center;
}

table.jobInfoTable td.numberCell {
    text-align: right;
}

table.jobInfoTable td.buttonCell,
table.jobInfoTable td.timeCell {
    text-align: center;
}

table .checkCell {
    width: 40px;
    text-align: "center";
}

table .checkCell .checkbox {
    margin: 0px;
}

table tr.readOnly,
table.jobInfoTable tr.inactiveRow {
    font-style: italic;
    color: #666;
}

table.jobInfoTable th.dateTime {
    width: 150px;
}

td.onlineCell {
    background-color: #00ffff;
}

td.offlineCell {
    background-color: yellow;
}

td.inactiveCell {
    background-color: red;
    color: white;
    font-style: italic;
}

tr.totalRow {
    background-color: white;
    border: 1px solid white;
}

tr.totalRow td {
    background-color: white;
    border: 1px solid white !important;
    color: #007fff;
    font-weight: bold;
    text-align: right;
}

.jobTabs .nav-pills > li.active > a,
.jobTabs .nav-pills > li.active > a:focus,
.jobTabs .nav-pills > li.active > a:hover {
    background-color: #007fff;
}

div.rightButtons {
    text-align: right;
}

form.newJobForm h3 {
    text-align: center;
    font-weight: bold;
}

div.outlets {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

div.outlets label {
    margin-left: 40px;
    margin-right: 40px;
    font-weight: bold;
}

div.has-error div.rw-widget {
    border-color: #a94442;
}

span.arrow {
    color: black;
}

.text-center {
    text-align: center;
}

.jobNumber.navbar-link {
    color: red;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
}

.addGatewayTable .gatewayAssigned {
    color: green;
}

.addGatewayTable .gatewayOffline {
    font-style: italic;
}

.blink_p {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* hack until emotion and bootstrap play nicely */
.css-n83zsa,
.css-fzcql7 {
    height: 50px;
}

.helpError {
    color: #a94442;
}

.fdrLayoutModal .modal-dialog {
    overflow-y: initial !important;
}

.fdrLayoutModal .modal-body {
    height: 80vh;
    overflow-y: auto;
}

.fdrLayoutModalDialog {
    width: 80%;
}

.scaleConfigModalDialog {
    width: 800px;
}

span.clickable-header {
    cursor: pointer;
    text-decoration: underline;
}

span.clickable-glyph {
    cursor: pointer;
}

.wellnotes-tooltip .tooltip-inner {
    background-color: #f0f0f0 !important; 
    color: #000 !important;
}


/* loader loading spinner */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: -30px;
  z-index: 10;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-container input {
  flex: 1;
  padding-right: 40px; /* Adjust for loader spacing */
}