input[type="submit"], input[type="reset"], input[type="button"] {
  border: 0;
  font: inherit;
  line-height: normal;
  overflow: visible; }

* {
  box-sizing: border-box;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.2; }

body {
  background-color: #ffffff;
  font-family: 'Arial', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

.icon {
  margin: 5px; }

.red-button-icon {
  background-color: #b71c1c; }

.red-icon {
  color: #b71c1c; }

.text-center {
  text-align: center; }

.text-strike {
  text-decoration: line-through; }

.float-left {
  float: left; }

.float-right {
  float: right; }

.clear {
  clear: both; }




.container {
  margin: 2% auto;
  width: 350px; }

.login-container {
  position: relative;
  background-color: #0e1e33;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); }
  .login-container h1 {
    font-size: 2em;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    color: white; }
  .login-container #logo {
    display: block;
    margin: 20px auto;
    height: 100px; }
  .login-container .form-container {
    clear: both;
    display: block;
    background-color: white;
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    z-index: 5;
    overflow: hidden; }
    .login-container .form-container label {
      display: block;
      width: 90%;
      margin: 0 auto;
      padding: 10px 0; }
    .login-container .form-container input {
      width: 90%;
      font-size: 1em;
      padding: 5px;
      border: 1px solid black;
      border-radius: 5px; }
    .login-container .form-container .login-icon {
      font-size: 1.2em;
      color: #757575;
      margin-right: 5px; }
    .login-container .form-container input[type=submit] {
      padding: 5px;
      margin-top: 10px;
      width: 60%;
      color: #0e1e33;
      background-color: white;
      border: 1px solid #0e1e33;
      cursor: pointer;
      transition: all 0.2s ease-in-out; }
      .login-container .form-container input[type=submit]:hover {
        color: white;
        background-color: #0e1e33; }
      .login-container .form-container input[type=submit]:active {
        background-color: #000015; }

.multi-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: -1;
  color: #00000b;
  transform: scale(1.2); }

.error {
  font-weight: 700;
  color: #b71c1c;
  padding: 5px; }

.error-text {
  font-weight: 700;
  color: #b71c1c; }

header {
  width: 100%;
  border-bottom: 5px solid white; }

.topbar-container {
  color: whitesmoke;
  background-color: #1351d8;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 20px 0 0 0;
  -webkit-box-shadow: 0 8px 6px -6px black;
  -moz-box-shadow: 0 8px 6px -6px black;
  box-shadow: 0 8px 6px -6px black;
  position: relative; }
  @media (max-width: 1100px) {
    .topbar-container {
      width: 95%; } }
  @media (max-width: 620px) {
    .topbar-container {
      width: 100%; } }
  .topbar-container .logo img {
    height: 75px; }

.user {
  text-align: right;
  width: 50%;
  color: #ffffff;
  position: absolute;
  right: 5px;
  top: 10%; }
  .user .name-and-logout {
    padding: 0px;
    color: #FFFFFF;
  }
    .user .name-and-logout .username, .user .name-and-logout #logout {
      display: inline-block;
    }
  @media (max-width: 620px) {
    .user {
      position: relative;
      text-align: center;
      width: 100%;
    }
  }


nav {
  //padding: 10px 0;
  margin-bottom: -10px; }
  nav ul a {
    padding: 16px;
    margin: 0;
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease-in-out; }
    nav ul a:hover {
      color: #1351d8; }
    nav ul a.active {
      background-color: #1351d8;
      color: white; }
      nav ul a.active:hover {
        color: #E3F2FD; }
    nav ul a#admin-nav-item {
      float: right; }

.message-container {
  text-align: center;
  width: 70%;
  margin: 10px auto -5px auto;
  padding: 10px;
  background-color: #8dc63f;
  color: white; }
  @media (max-width: 1100px) {
    .message-container {
      width: 95%; } }
  @media (max-width: 620px) {
    .message-container {
      width: 100%; } }
  .message-container.error {
    background-color: #b71c1c; }

.button-link {
  color: white;
  text-decoration: none;
  width: max-content; }
  .button-link .icon {
    margin: 2px; }
  .button-link .button {
    background-color: #1351d8;
    padding: 7px;
    width: max-content;
    transition: all 0.2s ease-in-out; }
    .button-link .button:hover {
      background-color: #1351d8; }
    .button-link .button.red-button {
      background-color: #b71c1c; }
      .button-link .button.red-button:hover {
        background-color: #a30808; }

.button-link-red {
  color: white;
  display:block;

  text-decoration: none;
  width: max-content; }
.button-link-red .icon {
  margin: 2px; }
.button-link-red .button {
  background-color: #b71c1c;
  padding: 7px;
  width: max-content;
  transition: all 0.2s ease-in-out; }
.button-link-red .button:hover {
  background-color: #a30808; }



.button {
  color: white;
  cursor: pointer;
  background-color: #0e1e33;
  padding: 7px;
  width: max-content;
  transition: all 0.2s ease-in-out; }
  .button:hover {
    background-color: #000a1f; }

.submit-button {
  padding: 7px;
  background-color: #0e1e33;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out; }
  .submit-button:hover {
    background-color: #1d2d42; }
  .submit-button:active {
    background-color: #000f24; }

.fieldset-container {
  text-align: center;
  margin: 0 auto; }
  @media (max-width: 810px) {
    .fieldset-container fieldset {
      display: block; }
      .fieldset-container fieldset input, .fieldset-container fieldset textarea {
        width: 100%; } }

.container-single-line {
  margin: 0 auto 10px auto;
  text-align: center; }

fieldset {
  display: inline-block;
  padding: 5px;
  margin: 10px;
  vertical-align: top;
  text-align: center; }
  fieldset label {
    display: block;
    margin-top: 5px;
    padding: 5px;
    background-color: #1351d8;
    color: white; }
  fieldset input[type="text"], fieldset textarea, fieldset select {
    width: 100%; }
  fieldset.submit-fieldset {
    display: block;
    width: 100%;
    text-align: center; }


.center {

overflow-x: hidden;
  text-align: center;
width: 90px;
}
.centerdashboard {


  text-align: center;
  width: 100%;
}
.content-container {
  width: 95%;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  @media (max-width: 1100px) {
    .content-container {
      width: 95%; } }
  @media (max-width: 620px) {
    .content-container {
      width: 100%; } }
.content-equipment-header-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #D3D3D3;
  color: #1351d8; }
.content-equipment-header-bar h1 {
  font-size: 1.75em;
  display: inline-block; }
.content-equipment-header-bar h2 {
  font-size: 1.3em;
  cursor: pointer;
  display: inline-block; }
.content-equipment-header-bar .breadcrumbs {
  display: block; }
.content-equipment-header-bar .breadcrumbs a {
  color: #1351d8; }
.content-equipment-header-bar .breadcrumbs .breadcrumb-arrow {
  color: #1351d8; }
.content-equipment-header-bar .breadcrumbs p {
  display: inline-block;
  color: #1351d8; }

.content-header-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #D3D3D3;
  color: #1351d8; }
  .content-header-bar h1 {
    font-size: 1.75em;
    display: inline-block; }
  .content-header-bar h2 {
    font-size: 1.3em;
    cursor: pointer;
    display: inline-block; }
  .content-header-bar .breadcrumbs {
    display: block; }
    .content-header-bar .breadcrumbs a {
      color: #1351d8; }
    .content-header-bar .breadcrumbs .breadcrumb-arrow {
      color: #1351d8; }
    .content-header-bar .breadcrumbs p {
      display: inline-block;
      color: #1351d8; }

.content-header-addeqt-bar {
  margin-top: 20px;
  padding: 10px;
  background-color: #1351d8;
  color: white; }
.content-header-addeqt-bar h1 {
  font-size: 1.75em;
  display: inline-block; }
.content-header-addeqt-bar h2 {
  font-size: 1.3em;
  cursor: pointer;
  display: inline-block; }
.content-header-addeqt-bar .breadcrumbs {
  display: block; }
.content-header-addeqt-bar .breadcrumbs a {
  color: white; }
.content-header-addeqt-bar .breadcrumbs .breadcrumb-arrow {
  color: white; }
.content-header-addeqt-bar .breadcrumbs p {
  display: inline-block;
  color: white; }


.content-header-bar-comment {
  margin-top: 20px;
  padding: 10px;
  background-color: #0e1e33;
  color: white; }
.content-header-bar h1 {
  font-size: 1.75em;
  display: inline-block; }
.content-header-bar h2 {
  font-size: 1.3em;
  cursor: pointer;
  display: inline-block; }
.content-header-bar .breadcrumbs {
  display: block; }
.content-header-bar .breadcrumbs a {
  color: #1351d8; }
.content-header-bar .breadcrumbs .breadcrumb-arrow {
  color: #1351d8; }
.content-header-bar .breadcrumbs p {
  display: inline-block;
  color: #1351d8; }

.content-area {
  clear: both;
  padding: 10px; }
  .content-area h2 {
    font-size: 1.6em;
    margin: 5px 0; }
  .content-area ul {
    margin: 5px; }

.dropdown {
  padding: 10px;
  margin: 0;
  display: inline-block;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out; }
  .dropdown:hover {
    color: #1351d8; }
  .dropdown.active {
    background-color: #1351d8;
    color: white; }
    .dropdown.active:hover {
      color: #E3F2FD; }

.dropbtn {
  color: white;
  background-color: #0e1e33;
  padding: 7px;
  width: max-content;
  transition: all 0.2s ease-in-out; }
  .dropbtn:hover {
    background-color: #7eb730; }
  .dropbtn.red-button {
    background-color: #b71c1c; }
    .dropbtn.red-button:hover {
      background-color: #a30808; }

.dropbtnn {
  background-color: #0e1e33;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none; }

.dropdownn {
  position: relative;
  display: inline-block; }

.dropdownn-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; }

.dropdownn-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block; }

.dropdownn-content a:hover {
  background-color: #ddd; }

.dropdownn:hover .dropdownn-content {
  display: block; }

.dropdownn:hover .dropbtnn {
  background-color: #8dc63f;
}

.shadow {
  -moz-box-shadow:    3px 3px 5px 6px #ccc;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;
  box-shadow:         3px 3px 5px 6px #ccc;
}

.info-container {
  clear: both;
  text-align: center;
  margin: 0; }
  .info-container.no-button {
    margin: 20px 5px; }
  @media (max-width: 500px) {
    .info-container {
      margin: 40px 0 20px 0; } }
  .info-container .info-wrap {
    display: inline-block;
    margin: 5px;
    padding: 5px;
    width: 31.5%;
    vertical-align: top; }
    @media (max-width: 792px) {
      .info-container .info-wrap {
        display: block;
        width: 80%;
        margin: 5px auto; } }
    @media (max-width: 500px) {
      .info-container .info-wrap {
        width: 100%; } }
    .info-container .info-wrap.description {
      display: inline-block;
      width: 48.3%; }
      @media (max-width: 792px) {
        .info-container .info-wrap.description {
          display: block;
          width: 80%;
          margin: 5px auto; } }
      @media (max-width: 500px) {
        .info-container .info-wrap.description {
          width: 100%; } }
    .info-container .info-wrap .info-label {
      display: block;
      background-color: #1351d8 ;
      padding: 5px;
      margin: 3px;
      text-align: center;
      width: 100%;
      color: white; }
    .info-container .info-wrap .info-text {
      margin-left: 5px;
      text-align: center; }
    .info-container .info-wrap .info-text-left {
  margin-left: 5px;
  text-align: left; }

.dashboard-message-container {
  width: 60%;
  margin: 0 auto; }
  @media (max-width: 1100px) {
    .dashboard-message-container {
      width: 98%; } }
  .dashboard-message-container .content-area img {
    height: 350px;
    display: inline-block;
    margin: 5px auto; }

table.dataTable {
  margin: 20px auto;
  width: 100%; }
  table.dataTable.no-footer {
    border-bottom: 2px solid #0e1e33; }
  table.dataTable tr.even {
    background-color: #e9e9e9; }
  table.dataTable tr.odd {
    background-color: white; }

.table-container {
  margin: 50px auto;
  width: 90%; }
  @media (max-width: 620px) {
    .table-container {
      width: 98%; } }

.list-table {
  background-color: #1351d8;
  border: 2px solid #0e1e33; }
  .list-table thead > tr > th {
    text-align: left;
    background-color: #1351d8;
    color: white;
    border-bottom: none;
    padding: 8px; }
  .list-table a {
    color: black; }
    .list-table a:visited {
      text-decoration: none;
      color: black; }

#document-list {
  width: 100%; }
  @media (max-width: 765px) {
    #document-list {
      width: 100%; } }

#parts-select, #reference-select {
  width: 310px; }
  @media (max-width: 620px) {
    #parts-select, #reference-select {
      width: 80%;
      display: block; } }

#documents-select, #reference-select {
    width: 310px; }
@media (max-width: 620px) {
    #documents-select, #reference-select {
        width: 80%;
        display: block; } }

#markups-select, #reference-select {
    width: 310px; }
@media (max-width: 620px) {
    #markups-select, #reference-select {
        width: 80%;
        display: block; } }

#permissions-table {
  width: 90%;
  margin: 0 auto; }
  #permissions-table tr:nth-of-type(odd) {
    background-color: white; }
  #permissions-table tr:hover {
    background-color: #e5e5e5; }
  #permissions-table tr td {
    padding: 4px; }

#approval-table tr > td {
  padding: 3px;
  vertical-align: top; }
  #approval-table tr > td input[type="submit"] {
    padding: 3px; }
  #approval-table tr > td p {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px; }

.upload-form {
  margin: 10px; }

.document-link > a {
  color: black; }
  .document-link > a i {
    text-decoration: none; }

.image-link {
  display: inline-block;
  margin: 5px;
  text-align: center;
  width: 400px;
  vertical-align: top; }
  .image-link a img {
    width: 400px; }
  .image-link a p {
    text-align: center; }

#maintenance-list tr th, #maintenance-list tr td {
  padding: 5px;
  text-align: left; }
#maintenance-list tr th {
  border-bottom: 1px solid #d3d3d3; }
#maintenance-list tr td a {
  color: black; }

.part-header {
  cursor: pointer; }

.related-part-item {
  display: inline-block;
  position: relative;
  margin: 5px;
  padding: 5px;
  transition: all 0.2s ease-in-out; }
  .related-part-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .related-part-item a {
    color: black;
    text-decoration: none; }

.menu-grid {
  width: 70%;
  margin: 30px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  @media (max-width: 900px) {
    .menu-grid {
      width: 90%; } }
  .menu-grid a {
    text-decoration: none; }
    .menu-grid a:visited {
      text-decoration: none; }
    .menu-grid a .menu-item {
      margin: 5px;
      padding: 2em;
      text-align: center;
      background-color: white;
      color: black;
      border: 1px solid #0e1e33;
      border-radius: 5px;
      transition: all 0.2s ease-in-out; }
      .menu-grid a .menu-item:hover {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); }
      .menu-grid a .menu-item .menu-item-icon {
        margin: 10px; }

#pdf-viewer {
  width: 652px;
  height: 844px; }

footer {
  padding: 30px;
  text-align: center;
  color: black; }

#hard-hat {
  height: 25px; }

.hidden {
  display: none; }

#page-mask {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0,0,0,0.6);
}
a.logout:link
{
  color: #ffffff;

}
a.logout:visited
{
  color: #ffffff;

}
a.logout:hover
{
  color: #ffffff;

}
a.logout:active
{
  color: #ffffff;


}
a.nav-link:link
{
  color: #ffffff;

}
a.nav-link:visited
{
  color: #ffffff;

}
a.nav-link:hover
{
  color: #ffffff;
  text-decoration: underline;

}
a.nav-link:active
{
  color: #ffffff;

}

.input-detail-field
{
    width:100%;
}
/*# sourceMappingURL=layout.css.map */
/*
==========================================================
==========================================================

Bootstrapious Dashboard Template 1.2

https://bootstrapious.com/p/bootstrap-4-dashboard

==========================================================
==========================================================
*/
/*
* ==========================================================
*     GENERAL
* ==========================================================
*/
.text-bold {
  font-weight: 700;
}

.text-small {
  font-size: 0.9rem;
}

.text-xsmall {
  font-size: 0.8rem;
}

.text-gray {
  color: #868e96;
}

.text-uppercase {
  letter-spacing: 0.2em;
}

.lh-2 {
  line-height: 2;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

body {
  overflow-x: hidden;
}

i {
  display: inline-block;
}

span {
  display: inline-block;
}

.mt-30px {
  margin-top: 30px !important;
}

.mb-30px {
  margin-bottom: 30px !important;
}

i[class*='icon-'] {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

table {
  font-size: 0.9em;
  color: #666;
}

.btn-xs {
  font-size: 0.7em !important;
  padding: 2px 5px !important;
  border-radius: 2px !important;
}

.badge {
  font-weight: 400;
  border-radius: 0;
}

.badge.badge-primary {
  background: #33b35a;
}

.page {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
  width: calc(100% - 200px);
  background-color: #F4F7FA;
  min-height: 100vh;
  padding-bottom: 50px;
}

.page.active {
  width: calc(100% - 70px);
}

h2 {
  color: #555;
  font-weight: 400;
}

.breadcrumb-holder {
  background: #eceeef;
}

.breadcrumb-holder .breadcrumb {
  padding: 15px 0;
  font-size: 0.85em;
  font-weight: 300;
  color: #999;
  margin-bottom: 0;
}

.breadcrumb-holder .breadcrumb a:hover, .breadcrumb-holder .breadcrumb:focus {
  text-decoration: none;
}

.breadcrumb-holder .breadcrumb .container {
  padding: 0;
}

.card {
  margin-bottom: 30px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
  margin-bottom: 0;
}

.card:not([class*="text"]) p {
  color: #888;
}

.display {
  font-weight: 400 !important;
}

.section-padding {
  padding: 3rem 0;
}

.section-no-padding-bottom {
  padding-bottom: 0;
}

section header {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .container-fluid {
    padding: 0 3rem;
  }
}

.list-group-item {
  border-right: 0;
  border-left: 0;
}

.list-group-item:first-child, .list-group-item:last-child {
  border-radius: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.tile-link {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 30;
}

/*
* ==========================================================
*     Main NAVBAR
* ==========================================================
*/
nav.navbar {
  background: #393836;
  margin-left: 6%;
  width: 100%;

  /* Navbar Brand --------- */
  /*  Dropdowns ------------ */
  /* Toggle Button ---------- */
}

/*
* ==========================================================
*     SIDE NAVBAR
* ==========================================================
*/
@media all and (max-width: 700px) {
    .side-navbar {
        overflow-x: hidden;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 14%;
        text-align: center;
        background: #393836;
        color: #fff;
        z-index: 999;
        overflow-y: auto;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .content
    {
        padding-left: 14%;

    }
}


@media all and (min-width: 701px) {
    .side-navbar {
        overflow-x: hidden;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 6%;
        text-align: center;
        background: #393836;
        color: #fff;
        z-index: 999;
        overflow-y: auto;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        /*  Side navbar small ------------------------ */
    }
    .content
    {
        padding-left: 6%;

    }
}

.side-navbar .scrolled-wrapper {
  width: 100%;
  height: 100%;
}

.side-navbar.hide {
  left: -70px;
}

.side-navbar a.brand-small {
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
}

.side-navbar a.brand-small:hover, .side-navbar a.brand-small:focus {
  background: none;
}

.side-navbar a.brand-small strong {
  font-size: 1.5rem;
}

.side-navbar li {
  position: relative;
}

.side-navbar li a {
  position: relative;
  font-size: .9rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  width: 100%;

}

.side-navbar li a:focus, .side-navbar li a:hover, .side-navbar li a[aria-expanded="true"] {
  background: #33b35a;
  color: #fff;
  text-decoration: none;
}

.side-navbar li a[data-toggle="collapse"]::before {
  content: '\f104';
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 20px;
}

.side-navbar li a[aria-expanded="true"]::before {
  content: '\f107';
  color: #fff;
  font-size: .4rem;
}

.side-navbar li.active > a {
  background: #33b35a;
  font-size: .4rem;
}

.side-navbar li li.active > a {
  background: #2d9f50 !important;
}

.side-navbar li ul {
  background: #292929;
  font-size: .6rem;
  position: relative;
  min-width: 100%;
  left: 0;
  padding-left: 0;
}

.side-navbar li ul a {
  padding-left: 20px;
  font-size: .4rem;
}

.side-navbar li ul.collapse a {
  border-left: 2px solid #33b35a;
}

.side-navbar li ul.collapse a:hover {
  background: #121212;
}

.side-navbar .sidenav-header {
  background: #292929;
  margin-bottom: 10px;
}

.side-navbar .sidenav-header img {
  width: 50px;
  height: 50px;
}

.side-navbar .sidenav-header span {
  font-size: 0.6em;
  color: #666;
}

.side-navbar .sidenav-header h2 {
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: inline;
}

.side-navbar .sidenav-heading {
  font-weight: 700;
  color: #adb5bd;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;

}
.side-navbar .sidenav-heading2 {

  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
text-align-all: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: visible;
  white-space: nowrap;
}
/* Malihu Custom Scroll */
.mCSB_scrollTools {
  width: 4px;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0 !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #33b35a;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover {
  background-color: #33b35a;
}

/*
* ==========================================================
*      DASHBOARD COUNTS
* ==========================================================
*/
.dashboard-counts {
  color: #333;
  align-items: center;
}

.dashboard-counts .count-title span {
  font-size: 0.8em;
  color: #aaa;
  display: block;
}

.dashboard-counts .count-title i {
  font-size: 1.5em;
  color: #33b35a;
}

.dashboard-counts .icon {

}

.dashboard-counts strong {
  font-size: 0.9em;
  font-weight: 500;
  color: #555;
  display: inline;
}

.dashboard-counts .count-number {
  font-size: 2.2em;
  font-weight: 300;
}

/* DASHBOARD COUNTS MEDIAQUERIES ------------------------- */
@media (max-width: 991px) {
  .dashboard-counts div[class*='col-'] {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .dashboard-counts strong {
    font-size: 1em;
  }
  .dashboard-counts span {
    font-size: 0.9em;
  }
  .dashboard-counts .count-number {
    font-size: 3em;
  }
}

/*
* ==========================================================
*     DASHBOARD HEADER
* ==========================================================
*/
.dashboard-header {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.dashboard-header .check-lists {
  margin-top: 20px;
}

.dashboard-header .check-lists label {
  font-size: 0.75em;
}

.dashboard-header .pie-chart {
  position: relative;
  width: 300px;
  height: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.dashboard-header p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
}

.dashboard-header li {
  margin-bottom: 10px;
}

/* DASHBOARD HEADER MEDIAQUERIES ------------------------- */
@media (max-width: 991px) {
  .dashboard-header {
    background: none;
    border: none;
    padding: 0;
  }
  .dashboard-header div[class*='col-'] {
    margin-bottom: 30px;
  }
  .dashboard-header div[class*='col-']:last-of-type {
    margin-bottom: 0;
  }
  .dashboard-header .card {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
}

@media (min-width: 768px) {
  .dashboard-header p {
    font-size: 0.9em;
  }
  .dashboard-header h2 {
    font-size: 1.3rem;
  }
  .dashboard-header .check-lists label {
    font-size: 0.85em;
  }
}

@media (min-width: 992px) {
  .dashboard-header {
    margin-bottom: 30px;
  }
  .dashboard-header .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
  }
}


/*
* ==========================================================
*      PROGRESS CIRCLE
* ==========================================================
*/
.gmpc {
  padding: 0 !important;
  width: 100% !important;
  height: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #33b35a !important;
  border-right: 1px solid #eee;
}

@media (max-width: 575px) {
  .gmpc {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

/*
* ==========================================================
*       MAIN FOOTER
* ==========================================================
*/
footer.main-footer {
  position: relative;
  width: 100%;

  bottom: 0;
  background: #222;
  padding: 10px 0;
}

footer.main-footer p {
  font-size: 0.7em;
  color: #777;
  margin: 0;
}

/* MAIN FOOTER MEDIAQUERIES ------------------------- */
@media (max-width: 575px) {
  footer.main-footer div[class*="col-"] {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  footer.main-footer p {
    font-size: 0.9em;
  }
}
/*
* ==========================================================
*       MAIN Header
* ==========================================================
*/
footer.main-header {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #222;
  padding: 10px 0;
}

footer.main-header p {
  font-size: 0.7em;
  color: #777;
  margin: 0;
}

/* MAIN FOOTER MEDIAQUERIES ------------------------- */
@media (max-width: 575px) {
  footer.main-header div[class*="col-"] {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  footer.main-header p {
    font-size: 0.9em;
  }
}
/*
* ==========================================================
*    Data Table
* ==========================================================
*/
.dataTables_wrapper.container-fluid {
  padding: 10px 5px 0 0;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 1.5rem;
}

div.dataTables_wrapper div.dataTables_paginate {
  padding-top: 0.65rem;
}

/*
 * 3. TYPE
 */
body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
}

a {
  color: #33b35a;
  text-decoration: none;
}

a:focus, a:hover {
  color: #22773c;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
}

h1,
.h1 {
  font-size: 1.5rem;
}

h2,
.h2 {
  font-size: 1.3rem;
}

h3,
.h3 {
  font-size: 1.2rem;
}

h4,
.h4 {
  font-size: 1.1rem;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: 0.9rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  border-left: 5px solid #33b35a;
}

.blockquote-footer {
  color: #868e96;
}

.blockquote-footer::before {
  content: "\2014 \00A0";
}

.text-primary {
  color: #33b35a !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: #288b46 !important;
}
.calendar-text { margin-top: .3em; }
.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

.label-warning[href],
.badge-warning[href] {
  background-color: #c67605;
}
#newNotifications {
  font-size: 12px;
  background: #ff0000;
  color: #fff;
  padding: 0 5px;
  vertical-align: top;
  margin-left: -10px;
}
.alarmbox{
    border: 1px solid;
    position:fixed;
    top:10px;
    right:202px;
    z-index: 9999;
    background-color:#ffc107;
    height:75px;
    width: 200px;
    border-radius: 25px;
    margin-right: 15%;
}

.alarmboxWarn{
    border: 1px solid;
    position:fixed;
    top:10px;
    right:120px;
    z-index: 9999;

    height:75px;
    width: 200px;
    border-radius: 25px;
    animation: blinker 1s linear infinite;
}

.roverbox{
    border: 1px solid;
    position:fixed;
    top:10px;
    right:6px;
    z-index: 9999;
    background-color:#ffc107;
    height:75px;
    width: 100px;
    border-radius: 25px;
    margin-right: 15%;
}

.roverboxWarn{
    border: 1px solid;
    position:fixed;
    top:10px;
    right:6px;
    z-index: 9999;

    height:75px;
    width: 100px;
    border-radius: 25px;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        background-color: red;
    }
}

/* THIS IS THE NEW STUFF BELOW.  Eventually the top needs to go away */


:root {
  --hh-primary: #2f80ed;
  --hh-sidebar: #2f3c48;
  --hh-sidebar-2: #26323c;
  --hh-text: #ffffff;
  --hh-muted: rgba(255,255,255,0.7);
  --hh-bg: #f4f7fa;
  --hh-card: #ffffff;
  --hh-border: rgba(255,255,255,0.12);
}

/* Page background */
body {
  background: var(--hh-bg);
}

/* Sidebar sizing like the screenshot */
.side-navbar.hh-sidebar {
  width: 260px !important;
  background: var(--hh-sidebar) !important;
  text-align: left !important;
  padding: 0 !important;
}

.content {
  padding-left: 260px !important;
}

/* Sidebar brand block */
.hh-sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  padding: 18px 18px;
  border-bottom: 1px solid #e9eef5;
}

.hh-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hh-brand-title {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.1;
}

.hh-brand-subtitle {
  color: #64748b;
  font-size: 12px;
  margin-top: 2px;
}

/* Site selector row */
.hh-site-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: var(--hh-primary);
}

.hh-site-menu {
  border: 0;
  background: rgba(255,255,255,0.18);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
}

.hh-site-pill {
  flex: 1;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar nav */
.hh-nav {
  padding: 14px 0 20px 0;
}

.hh-nav-section {
  padding: 10px 0 4px 0;
}

.hh-nav-section-title {
  color: var(--hh-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 18px 8px 18px;
}

.hh-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.hh-nav-item i {
  width: 18px;
  text-align: center;
  opacity: 0.9;
}

.hh-nav-item span {
  font-size: 14px;
  font-weight: 500;
}

.hh-nav-item:hover {
  background: var(--hh-sidebar-2);
  text-decoration: none;
  color: #fff;
}

.hh-nav-item.active {
  background: rgba(255,255,255,0.10);
  border-left-color: #ffffff;
}

/* Top bar like the screenshot */
.hh-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--hh-primary);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.hh-topbar-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.hh-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hh-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.18);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.hh-topbar-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  text-align: right;
}

.hh-topbar-links a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 600;
}

.hh-topbar-links a:hover {
  text-decoration: underline;
}

/* Make the old header bar not fight the new look */
.content-header-bar {
  background: transparent !important;
  padding: 0 !important;
  margin-top: 0 !important;
  box-shadow: none !important;
}
:root {
  --hh-sidebar-width: 260px;
  --hh-sidebar-collapsed-width: 72px;
}

/* Keep these consistent */
.side-navbar.hh-sidebar {
  width: var(--hh-sidebar-width) !important;
}

.content {
  padding-left: var(--hh-sidebar-width) !important;
}

/* Desktop collapse state */
body.hh-sidebar-collapsed .side-navbar.hh-sidebar {
  width: var(--hh-sidebar-collapsed-width) !important;
}

body.hh-sidebar-collapsed .content {
  padding-left: var(--hh-sidebar-collapsed-width) !important;
}

/* Hide text and section titles when collapsed */
body.hh-sidebar-collapsed .hh-nav-section-title,
body.hh-sidebar-collapsed .hh-nav-item span,
body.hh-sidebar-collapsed .hh-brand-right,
body.hh-sidebar-collapsed .hh-site-pill {
  display: none !important;
}

/* Center icons nicely in collapsed mode */
body.hh-sidebar-collapsed .hh-nav-item {
  justify-content: center;
  gap: 0;
  padding: 12px 0;
}

body.hh-sidebar-collapsed .hh-nav-item i {
  width: auto;
  font-size: 18px;
}

/* Optional tooltip feel on hover by letting title show */
.hh-nav-item { position: relative; }
.hh-nav-item span { white-space: nowrap; }

/* Mobile off canvas */
@media (max-width: 900px) {
  .side-navbar.hh-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transform: none !important;      /* <-- key line */
    z-index: 1200;
  }

  /* Always reserve space for sidebar (collapsed width) */
  .content {
    padding-left: var(--hh-sidebar-collapsed-width) !important;
  }

  /* If user expands it, reserve full width */
  body:not(.hh-sidebar-collapsed) .content {
    padding-left: var(--hh-sidebar-width) !important;
  }

  /* remove the dark overlay behavior */
  body::before {
    content: none !important;
  }
}

/* Make sure sidebar sits above topbar on mobile, but not on desktop */
.side-navbar.hh-sidebar { z-index: 800; }
.hh-topbar { z-index: 900; }
@media (max-width: 900px) {
  .side-navbar.hh-sidebar { z-index: 1200; }
  .hh-topbar { z-index: 1000; }
}
body.hh-sidebar-collapsed .hh-sidebar-brand {
  justify-content: center;
}

body.hh-sidebar-collapsed .hh-brand-logo {
  width: 40px;
  height: 40px;
}
.hh-header-widgets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}

/* If header itself is flex, prevent auto-push */
.hh-header-widgets {
  margin-left: auto;
  margin-right: auto;
}
.header,
.header-bar,
.content-header {
  display: flex;
  align-items: center;
}
.hh-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  padding: 12px 0 0 0;
}

.hh-kpi-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(16,24,40,0.08);
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 10px;
  align-items: center;
}

.hh-kpi-icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,128,237,0.10);
}

.hh-kpi-body {
  min-width: 0;
}

.hh-kpi-title {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hh-kpi-subtitle {
  opacity: 0.85;
  font-size: 13px;
  margin-top: 2px;
}

.hh-kpi-card .btn.btn-block {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.hh-kpi-card h2 {
  margin: 0;
}

/* Make the dropdowns fit inside */
.hh-kpi-card .UpcomingSelect {
  width: 100%;
  max-width: 160px;
  font-size: 13px;
}

/* Optional: let one card span 2 columns */
.hh-kpi-wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 1400px) {
  .hh-kpi-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}

@media (max-width: 1100px) {
  .hh-kpi-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .hh-kpi-wide { grid-column: span 2; }
}

@media (max-width: 700px) {
  .hh-kpi-grid { grid-template-columns: 1fr; }
  .hh-kpi-wide { grid-column: span 1; }
}
/* ===== Maintenance Overview Grid ===== */

.hh-maint-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-areas:
          "kpi progress aging"
          "system system system"
          "resp asset asset"
          "activity activity activity"
          "todate todate todate";
  gap: 16px;
}

/* Assign areas */
.hh-kpi-summary   { grid-area: kpi; }
.hh-progress-card { grid-area: progress; }
.hh-aging-card    { grid-area: aging; }
.hh-system-card   { grid-area: system; }
.hh-resp-card     { grid-area: resp; }
.hh-asset-card    { grid-area: asset; }
.hh-activity-card { grid-area: activity; }
.hh-todate-card   { grid-area: todate; }

/* Fix KPI rings spacing */
.hh-kpi-summary .hh-rings {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

/* Keep charts visually balanced */
.hh-progress-card canvas,
.hh-activity-card canvas,
.hh-todate-card canvas {
  max-height: 260px;
}

/* Prevent left-stacking on wide screens */
.hh-maint-grid > .hh-card {
  width: 100%;
}

/* ===== Responsive ===== */

@media (max-width: 1200px) {
  .hh-maint-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
            "kpi kpi"
            "progress aging"
            "system system"
            "resp asset"
            "activity activity"
            "todate todate";
  }
}

@media (max-width: 800px) {
  .hh-maint-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
            "kpi"
            "progress"
            "aging"
            "system"
            "resp"
            "asset"
            "activity"
            "todate";
  }

  .hh-kpi-summary .hh-rings {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===============================
   Maintenance Overview base styles
   =============================== */

.hh-overview-wrap {
  padding: 16px 18px 22px 18px;
}

.hh-overview-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* override your global a { color:#fff; } rule */
.hh-overview-wrap a {
  color: inherit;
}

.hh-tab {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  padding: 10px 14px;
  border-radius: 10px 10px 0 0;
  font-weight: 800;
  cursor: pointer;
}

.hh-tab.active {
  background: rgba(47, 128, 237, 0.12);
  border-color: rgba(47, 128, 237, 0.35);
}

.hh-pdf-btn {
  margin-left: auto;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: rgba(15, 23, 42, 0.7);
  text-decoration: none;
}

.hh-pdf-btn:hover {
  background: rgba(47, 128, 237, 0.10);
}

/* Cards */
.hh-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

.hh-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hh-card-title {
  font-weight: 900;
  color: #0f172a;
}

.hh-card-metric {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.75);
}

.hh-card-body {
  padding: 14px;
}

/* KPI Rings layout */
.hh-rings {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  align-items: center;
}

.hh-ring {
  text-align: center;
  padding: 8px 6px;
}

.hh-ring canvas {
  display: block;
  margin: 0 auto;
}

.hh-ring-label {
  margin-top: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.75);
}

.hh-ring-value {
  margin-top: 4px;
  font-weight: 900;
  font-size: 18px;
  color: #0f172a;
}

/* Progress toggle */
.hh-toggle {
  display: flex;
  gap: 6px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 10px;
  padding: 3px;
}

.hh-toggle-btn {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.75;
  color: #0f172a;
}

.hh-toggle-btn.active {
  background: rgba(47, 128, 237, 0.15);
  opacity: 1;
}

/* Legends */
.hh-mini-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.75);
}

.hh-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-right: 6px;
}

.hh-dot-1 { background: rgba(47,128,237,1); }
.hh-dot-2 { background: rgba(47,128,237,0.75); }
.hh-dot-3 { background: rgba(47,128,237,0.45); }
.hh-dot-4 { background: rgba(47,128,237,0.25); }

/* Tables */
.hh-simple-table {
  width: 100%;
  border-collapse: collapse;
}

.hh-simple-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.85);
}

.hh-right {
  text-align: right;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.9);
}

/* Bars */
.hh-bar-row {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.hh-bar-label {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hh-bar {
  height: 16px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  background: rgba(15, 23, 42, 0.06);
}

.hh-bar-open { background: rgba(47,128,237,0.35); }
.hh-bar-closed { background: rgba(47,128,237,0.75); }

.hh-bar-counts {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-weight: 900;
}

.hh-aging-bar {
  margin-top: 12px;
  height: 10px;
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.hh-aging-fill {
  height: 100%;
  background: rgba(47,128,237,0.55);
}

/* Mini bars */
.hh-mini-bar-row {
  display: grid;
  grid-template-columns: 1fr 120px 28px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.hh-mini-label {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hh-mini-bar {
  height: 12px;
  border-radius: 10px;
  background: rgba(15,23,42,0.06);
  overflow: hidden;
}

.hh-mini-fill {
  height: 100%;
  background: rgba(47,128,237,0.65);
}

.hh-mini-count {
  text-align: right;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
}

/* Make chart blocks consistent height */
.hh-progress-card .hh-card-body { height: 260px; }
.hh-activity-card .hh-card-body { height: 280px; }
.hh-todate-card .hh-card-body { height: 280px; }

.hh-progress-card canvas,
.hh-activity-card canvas,
.hh-todate-card canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Responsive ring layout */
@media (max-width: 1200px) {
  .hh-rings { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .hh-bar-row { grid-template-columns: 1fr; }
  .hh-mini-bar-row { grid-template-columns: 1fr; }
}
:root {
  --hh-topbar-height: 64px;
}
.hh-topbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hh-topbar-height);
  z-index: 1000;
}
/* collapsed sidebar hides text, relies on hover tooltip */
body.hh-sidebar-collapsed .hh-nav-item span {
  display: none;
}

/* simple custom tooltip (optional). If you only want default browser tooltip, skip this whole block */
body.hh-sidebar-collapsed .hh-nav-item {
  position: relative;
}

body.hh-sidebar-collapsed .hh-nav-item:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  z-index: 9999;
}

body.hh-sidebar-collapsed .hh-nav-item:hover::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: rgba(15, 23, 42, 0.95);
  z-index: 9999;
}
.filters-row{
  display:flex;
  gap:16px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.filter-item{
  min-width:220px;
}
#device_type_select, #system_select, #building_select{
  width:260px;
  max-width:100%;
}
