body{
  color:black;
  /*margin: 0px 0px;*/
}
.remove-padding{
  padding-left: 0px;
  padding-right: 0px;
}

.delete{
  color: red;
}
.form_in_page{
  display: none;
}
#meter_branch_table_toggle{
  display: none;
  color:red;
}
.btn-primary{
  border-radius: 4px;
}
#slogan{
  /*position: fixed;
  bottom: 0;
  width: 100%;
  background-color:#0567B4;
  color: white;*/
  text-align: center;
}
/* .fixed_screen_table{
  table-layout: fixed;
} */

.navbar-default .navbar-nav > li.dropdown:hover > a,
.navbar-default .navbar-nav > li.dropdown:hover > a:hover,
.navbar-default .navbar-nav > li.dropdown:hover > a:focus {
    background-color: rgb(231, 231, 231);
    color: rgb(85, 85, 85);
}
li.dropdown:hover > .dropdown-menu {
    display: block;
}

.items-right{
  align-items: center;
}

.hide_other_sections_first{
  display: none;
}
.balance_item_label:hover {
  background-color: lightgrey;
  font-style: italic;
}
select[readonly] option, select[readonly] optgroup {
    display: none;
}

/* Fancy Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid rgba(128, 128, 128, 0.2);
  border-top: 5px solid #808080;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: #808080;
  font-weight: bold;
  font-size: 16px;
  margin-top: 15px;
  text-align: center;
}

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