.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
  width: 100%;
  flex-flow: column wrap;
}

.header-content {
  display: flex;
    justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.main-header{
  padding: 20px;
  background-color: #edf1f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}
.main-navbar {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-logo {
  font-size: 20px;
  font-weight: 600;
}
.toggle-btn{
  position: absolute;
  top: 20px; /*10px*/
  right: -44px; /*-10px*/
  color: #000000;
  cursor: pointer;
  z-index: 100;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid white !important;
  padding: 0px 10px;
  border : none !important;

}
.user-name .ant-btn{
  background-color: #e1efff !important;
  color:#004282;
  border: none !important;
}
.main-footer{
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: white;
  margin-top: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  font-size: 12px;
  border-radius: 8px;
  margin-left: 15px;
  text-align: right;
  gap: 6px; /* Ajout d'un espace entre "Bonjour Dr" et l'avatar */
}

.user-name  .iconAvatarHeader{
  background-color: #931616 !important;
  border-radius: 50% !important;
}
.notification-icon {
  font-size: 20px;
  color: #1a1a47;
  cursor: pointer;
}
/*******************************************************************/
/*******************************************************************/
/*************************** Menu Dropdown Design ****************************************/
/* Change la couleur de fond du menu */
.custom-dropdown-menu-header .ant-dropdown-menu {
  background-color: #eaeaec !important;
}
/* Change la couleur de fond et du texte au survol */
.custom-dropdown-menu-header .ant-dropdown-menu-item:hover {
  background-color: #c2cef9 !important;
  color: #004282 !important;
  font-weight: 600;
}
/* Change la couleur de fond et du texte lorsque l'élément est actif */
.custom-dropdown-menu-header .ant-dropdown-menu-item-active {
  background-color: #004282 !important;
  color: #ffffff !important;
}
/*******************************************************************/
/*******************************************************************/
/*************************** Modal Design ****************************************/
/* Appliquer une bordure autour du modal */
.ant-modal {
  border-top: 3px solid #c2cef9 !important; 
  border-radius: 10px !important; 
}

/* Appliquer une bordure personnalisée à l'en-tête */
.ant-modal-header {
  border-bottom: 2px solid #c2cef9 !important;
}

.ant-modal:not(:has(.ant-modal-footer)) {
  border-bottom: none !important;
}

/* Modifier la couleur et la taille de l'icône */
.ant-modal-close-x {
  font-size: 20px !important;
  color: #c2cef9 !important;
}

/* Changer la couleur de l'icône au survol */
.ant-modal-close:hover .ant-modal-close-x {
  color: white !important;
  font-weight: bold !important;
}