body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #bbf3bd;
  
}
.logo{
  font-size: 25px;
  padding-left: 30px;
}
.logo h3{
  color: white;
}
.navigation{
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-left: 40px;
  list-style: none;
}
.navigation li a {
  color: white;
}
.nav{
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 30px 20px;
  border-top-right-radius: 20px;
 /*  background-color: rgb(14, 98, 216); */
  background-color: #4caf50;
  width: 150px;
  height: 95vh;

}
.svg-icon{
  height: 45px;
}
.logout{
  padding-top: 180px;
  padding-left: 40px;
}
.conteiner{
  display: flex;
  flex-direction: row;
}

.welcome{
  margin-top: 30px;
  margin-left: 40px;
  color: white;
 /*  background-color: rgb(14, 98, 216); */
  background-color: #4caf50;
  border-radius: 40px;
  width: 1000px;
  height: 200px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.yacine{
  margin-top: 20px;
  margin-left: 1020px;
  width: 280px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.notif{
  background-color: rgb(14, 98, 216);
  border-radius: 50px;
}
#megs{
 /*  background-color: rgb(14, 98, 216); */
  background-color: #4caf50;
  border-radius: 5px;
  margin-left: 100px;
}
.welcome h1{
  padding:50px 30px;
}
.svg-icon1{
  height: 35px;
}
.profil{
  width: 300px;
 /*  background-color: rgb(14, 98, 216); */
  background-color: #4caf50;
  border-top-left-radius: 20px;
}
.dis{
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 20px;
}
.close{
  display: none;
}
#msg{
  position: fixed;
  top: 70px;
  right: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  cursor: pointer;
}
#messages{
  display: block;
  background-color: white;
  height: 200px;
  overflow-y: scroll;
  padding: 10px;
}
#message-input{
  width: 100%;
  padding: 10px;
  border: none;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}

#chat-windows-container {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.chat-window {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 5px;
  width: 280px;
  height: 300px;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-log {
  height: 120px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 5px;
  margin-bottom: 10px;
}

.chat-message-input {
  width: 100%;
  padding: 10px;
  border: none;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}

.chat-message-submit {
  width: 100px;
}
.hidden {
  display: none;
}