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;
}
a {
  color: black;
}
li{
  list-style: none;
}
.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;
}

.appointments{
  margin-top: 20px;
  margin-left: 70px;
  border-radius: 23px;
  background-color: #4caf50;
  width: 400px;
  height: 200px;
  overflow-y: scroll;
  height: 200px;
}
.appointments li{
  list-style: none;
  padding-top: 12px;
  padding-left: 12px;
}
.appointments li a {
  color: white;
}
.rdv{
  font-weight: bold;
  color: white;
  text-align: center;
}
.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;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}

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

/* chatbot style */
.close {
  display: none;
}
#chatbot{
  position: fixed;
  bottom: 20px;
  right: 300px;
  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;
}
#nom{
  position: fixed;
  bottom: 40px;
  right: 400px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid;
  border-radius: 5px;
}

#chatbot-header {
  background-color: #4caf50;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

#chatbot-messages {
  display: block;
  background-color: white;
  height: 300px;
  overflow-y: scroll;
  padding: 10px;
}

#chatbot-input {
  width: 100%;
  padding: 10px;
  border: none;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}

.user-message {
  background-color: #e8f5e9;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: right;
}

.bot-message {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}