body {
  font-family: 'Open Sans Regular', Arial, sans-serif;
}
.nav {
  background-color: rgb(0, 38, 82);
  padding-left: 20px;
}

.btn-primary {
  background-color: rgb(0, 38, 82);
  border-color: rgb(0, 38, 82);
}

#nav-icon {
  height: 40px;
}

tbody tr:hover {
  background-color: aliceblue;
}

#info-box {
    position: fixed;
    background: #fff;
    color: #212529;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 0.85rem;
    font-weight: 400;
    z-index: 9999;
    pointer-events: none;
    max-width: 300px;
    white-space: normal;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.15s;
}
#info-box.visible {
    visibility: visible;
    opacity: 1;
}
.info-btn {
    background: none;
    border: none;
    padding: 0;
    color: #6c757d;
    cursor: pointer;
    line-height: 1;
    vertical-align: middle;
}
.info-btn:hover {
    color: #0d6efd;
}

