/* css/style.css */
 body {
  font-family: Arial, sans-serif;
  margin: 0;
}

.container {
  display: flex;
  height: 100vh;
}

#nav {
  flex-grow: 1; /* Allow it to take up remaining space and center it */
  text-align: center;
}

#login, #disconnect {
  text-align: right;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar {
  width: 200px;
  background-color: #f4f4f4;
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}

.sidebarPub{
  width: 200px;
  background-color: #f4f4f4;
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}

.sidebarPub img {
  width: 100%;
}


.sliding-list {
  margin-bottom: 20px;
}

.sliding-list h2 {
  color: #333;
}

.sliding-list select {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
}

.content {
  flex: 1;
  margin: 10px;
}

header {
  background-color: #ff6262;
  padding: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  /*   display: inline;*/
  margin-right: 20px;
}

a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

a:hover {
  color: #ddd;
}