/* Zorg dat de inhoud van de pagina niet onder de vaste balk verdwijnt */
body {
  padding-top: 50px !important;
}

/* Altijd vastgezette navigatiebalk bovenaan het scherm */
.top-nav-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 6px 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.top-nav-container {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
}

.top-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

.top-nav-btn:hover {
  background-color: #e9ecef;
  color: #000;
}

.top-nav-title {
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #495057;
}

@media (max-width: 600px) {
  .top-nav-title .label {
    display: none;
  }
}
