#gui-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 80px;
  background-color: #FFF;
  height: 55px;
  border-bottom: 1px solid #919191;
  position: relative;
  z-index: 11111;
}
/* A gombokat tartalmazó nav */
.nav-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around; /* egyenletesen elosztja a gombokat */
  width: 300px;
}
/* Gombok stílusa */
.nav-btn {
  padding: 8px auto;
  color: #0E6EB6;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  height: 35px;
  width: 100%;
  background: #FFF;
}
.nav-buttons #btnDashboard {
  border-radius: 5px 0 0 5px;
  border-top: 1px solid #0E6EB6;
  border-bottom: 1px solid #0E6EB6;
  border-left: 1px solid #0E6EB6;
  border-right: none;
}
.nav-buttons #btnMap {
  border-radius: 0;
  border: 1px solid #0E6EB6;
}
.nav-buttons #btnTable {
  border-radius: 0 5px 5px 0;
  border-top: 1px solid #0E6EB6;
  border-bottom: 1px solid #0E6EB6;
  border-right: 1px solid #0E6EB6;
  border-left: none;
}
.nav-btn:hover {
  background-color: #f9f9f9;
}
/* Aktív (kiválasztott) gomb */
.nav-btn.active {
  background-color: #0E6EB6;
  color: #FFF;
  font-weight: 600;
  cursor: default;
}

.no-click {
  cursor: wait;
}