.header {
  /* position: relative;  */
  width: 100%;
  display: block;
  flex-direction: colomn;
  color: white;
  padding: 0px 0px;
  justify-content: space-between;
  align-items: center;
  /* display: flex; flex-direction: colomn; */
}


/* Top Navigation Bar */
.top-bar {
  background-color: black;
  color: white;
  padding: 0px;
  width: 100%;
  /* Match Parent */
  height: auto;
  /* wrapcontent */
  display: inline-flex;
  border-radius: 0px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu {
  color: white;
  padding: 7px;
  margin-bottom: 0px;
  width: 100%;
  align-items: center;
  justify-content: center;
  /* Center items horizontally*/
  flex-wrap: wrap;
  /* Allow wrapping on small screens*/
  gap: 15px;
  /* Space between menu items*/
  /* Match Parent */
  height: auto;
  /* wrapcontent */
  text-align: center;
  /* 👈 This centers inline content like <a> */
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 16px;
  min-width: 80px;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.menu a:hover {
  background-color: #444;
  /* Dark gray on hover */
}

/* Active/current page highlight */
.menu a.active {
  background-color: #202020;
  /* Highlighted blue */
  /*color: rgb(87, 87, 87);*/
  color: green;
}



.nomApp {
  width: auto;
  display: inline;
  color: white;
  margin: 0px 0px 0px 10px;
  gap: 5px;
  size: 20px;
  flex: 1;
}



.userInfo {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  float: right;
}



.logout-btn {
  background-color: white;
  color: #1b1b1b;
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.logout-btn:hover {
  background-color: #e6e6e6;
}