/* css/style.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding-bottom: 200px;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.separator{
  flex: 1;
  display: flex;
  flex-direction: row;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#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;
  list-style-type: none; /* Supprime aussi les puces ici */
}

.sidebar,
.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;
}

li {
  margin-right: 20px;
}

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

a:hover {
  color: #ddd;
}
