



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	min-height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #1a9ee2;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #999999;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #00f715;
  background: -webkit-linear-gradient(-135deg, #5ac850, #1a9ee2);
  background: -o-linear-gradient(-135deg, #5ac850, #1a9ee2);
  background: -moz-linear-gradient(-135deg, #5ac850, #1a9ee2);
  background: linear-gradient(-135deg, #5ac850, #1a9ee2);
}

.wrap-login100 {
  width: 960px;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 177px 130px 33px 95px;
}

/*------------------------------------------------------------------
[  ]*/
.login100-pic {
  width: 316px;
}

.login100-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 290px;
}

.login100-form-title {
  font-family: Poppins-Bold;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;

  width: 100%;
  display: block;
  padding-bottom: 54px;
}


/*---------------------------------------------*/
.wrap-inputLOGP {
  position: relative;
  width: 110%;
  z-index: 1;
  margin-bottom: 10px;
}

.inputLOGP {
  font-family: Poppins-Medium;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;

  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 50px;
  border-radius: 25px;
  padding: 10%;
  padding-left: 15%;
 
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-inputLOGP {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: #1a9ee2;
}

.inputLOGP:focus + .focus-inputLOGP {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.centered-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; /* S'assure que l'image ne dépasse pas la largeur du conteneur */
    height: auto; /* Maintient le ratio de l'image */
}


/* Ajustement pour les icônes dans les champs de texte */
.symbol-inputLOGP {
  font-size: 20px; /* Augmenter légèrement la taille de l'icône pour une meilleure visibilité */
  position: absolute;
  top: 50%;
  left: 15px; /* Laisser suffisamment d'espace pour l'icône */
  transform: translateY(-50%); /* Centrer verticalement l'icône */
  pointer-events: none; /* Désactiver les événements sur l'icône */
}

/* Ajustements pour les petits écrans */
@media (max-width: 768px) {
  .symbol-inputLOGP {
    font-size: 16px; /* Réduire légèrement la taille de l'icône pour les petits écrans */
  }
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;

  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #1a9ee2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
}



/*------------------------------------------------------------------
[ Responsive ]*
/* Ajustement pour petits écrans (max-width: 768px) */
@media (max-width: 768px) {
  .wrap-login100 {
    padding: 50px 30px; /* Réduire le padding */
    max-width: 100%; /* Assurez-vous que le conteneur occupe toute la largeur */
    border-radius: 20px; /* Arrondir un peu plus les coins pour un aspect moderne */
  }

  .login100-form {
    width: 100%; /* Prendre toute la largeur disponible */
  }

  .wrap-inputLOGP {
    width: 100%; /* S'assurer que les champs ne dépassent pas du conteneur */
  }

  .container-login100-form-btn {
    padding-top: 20px;
    display: flex;
    justify-content: center; /* Centrer le bouton */
  }

  .login100-form-btn {
    width: 90%; /* Réduire la largeur du bouton pour qu'il s'ajuste mieux */
    font-size: 1rem; /* Taille du texte dans le bouton */
  }

  .login100-form-title {
    font-size: 22px; /* Réduire légèrement la taille du texte pour une meilleure lisibilité */
  }
}

/* Pour très petits écrans (max-width: 576px) */
@media (max-width: 576px) {
  .wrap-login100 {
    padding: 20px; /* Réduire encore plus le padding pour petits écrans */
    width: 100%; /* Utiliser toute la largeur */
  }

  .login100-form-btn {
    width: 100%; /* Prendre toute la largeur disponible pour le bouton */
    padding: 12px; /* Réduire la taille du bouton */
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Poppins-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*---------------------------CSS Bouton Recherche----------------------------------------------*/

.input {
  width: 100%;
  max-width: 220px;
  height: 45px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}

.input:hover {
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
}

.input:active {
  transform: scale(0.95);
}

.input:focus {
  border: 2px solid grey;
}

/*-------------------------------------------------------*/
nav {
  height: 100px;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 15px;
}

nav a:hover {
  background-color: #333;
}

body {
  padding-top: 1px;
}

header {
  background-image: url('../images/NewBandeau.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17vh;
  object-fit: cover;
  object-position: center 30%;
  margin-top: 20;
}

/*---------------------error 500-------------------*/

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 100px;
}

.loader2 {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 100px;
  border: 10px;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: rgb(0, 0, 0);
  transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.loader__bar:nth-child(1) {
  left: 0px;
  transform: scale(1, 0.2);
  -webkit-animation: barUp1 4s infinite;
  animation: barUp1 4s infinite;
}

.loader__bar:nth-child(2) {
  left: 15px;
  transform: scale(1, 0.4);
  -webkit-animation: barUp2 4s infinite;
  animation: barUp2 4s infinite;
}

.loader__bar:nth-child(3) {
  left: 30px;
  transform: scale(1, 0.6);
  -webkit-animation: barUp3 4s infinite;
  animation: barUp3 4s infinite;
}

.loader__bar:nth-child(4) {
  left: 45px;
  transform: scale(1, 0.8);
  -webkit-animation: barUp4 4s infinite;
  animation: barUp4 4s infinite;
}

.loader__bar:nth-child(5) {
  left: 60px;
  transform: scale(1, 1);
  -webkit-animation: barUp5 4s infinite;
  animation: barUp5 4s infinite;
}

.loader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: rgb(44, 143, 255);
  border-radius: 50%;
  -webkit-animation: ball624 4s infinite;
  animation: ball624 4s infinite;
}

@keyframes ball624 {
  0% {
    transform: translate(0, 0);
  }

  5% {
    transform: translate(8px, -14px);
  }

  10% {
    transform: translate(15px, -10px);
  }

  17% {
    transform: translate(23px, -24px);
  }

  20% {
    transform: translate(30px, -20px);
  }

  27% {
    transform: translate(38px, -34px);
  }

  30% {
    transform: translate(45px, -30px);
  }

  37% {
    transform: translate(53px, -44px);
  }

  40% {
    transform: translate(60px, -40px);
  }

  50% {
    transform: translate(60px, 0);
  }

  57% {
    transform: translate(53px, -14px);
  }

  60% {
    transform: translate(45px, -10px);
  }

  67% {
    transform: translate(37px, -24px);
  }

  70% {
    transform: translate(30px, -20px);
  }

  77% {
    transform: translate(22px, -34px);
  }

  80% {
    transform: translate(15px, -30px);
  }

  87% {
    transform: translate(7px, -44px);
  }

  90% {
    transform: translate(0, -40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }

  40% {
    transform: scale(1, 0.2);
  }

  50% {
    transform: scale(1, 1);
  }

  90% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1, 0.2);
  }
}

@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }

  40% {
    transform: scale(1, 0.2);
  }

  50% {
    transform: scale(1, 1);
  }

  90% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1, 0.2);
  }
}

@-webkit-keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }

  40% {
    transform: scale(1, 0.4);
  }

  50% {
    transform: scale(1, 0.8);
  }

  90% {
    transform: scale(1, 0.8);
  }

  100% {
    transform: scale(1, 0.4);
  }
}

@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }

  40% {
    transform: scale(1, 0.4);
  }

  50% {
    transform: scale(1, 0.8);
  }

  90% {
    transform: scale(1, 0.8);
  }

  100% {
    transform: scale(1, 0.4);
  }
}

@-webkit-keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }

  100% {
    transform: scale(1, 0.6);
  }
}

@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }

  100% {
    transform: scale(1, 0.6);
  }
}

@-webkit-keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }

  40% {
    transform: scale(1, 0.8);
  }

  50% {
    transform: scale(1, 0.4);
  }

  90% {
    transform: scale(1, 0.4);
  }

  100% {
    transform: scale(1, 0.8);
  }
}

@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }

  40% {
    transform: scale(1, 0.8);
  }

  50% {
    transform: scale(1, 0.4);
  }

  90% {
    transform: scale(1, 0.4);
  }

  100% {
    transform: scale(1, 0.8);
  }
}

@-webkit-keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }

  40% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1, 0.2);
  }

  90% {
    transform: scale(1, 0.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }

  40% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1, 0.2);
  }

  90% {
    transform: scale(1, 0.2);
  }

  100% {
    transform: scale(1, 1);
  }
}
/* Style du bouton vert "Créer un compte" */
.create-account-btn {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #28a745; /* Couleur verte pour le bouton */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px; /* Ajoutez un peu d'espace au-dessus */
  transition: all 0.4s;
}

.create-account-btn:hover {
  background: #218838; /* Couleur verte foncée pour l'effet hover */
}

.container-register100 {
    width: 100%;
    max-width: 400px;  /* Limite la largeur maximale du formulaire */
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); /* Légère ombre pour l'encadré */
    border-radius: 10px;
}

.wrap-register100 {
    width: 100%;
    padding: 30px 20px;
}

/*---------------------------------------------
[ Form Title Styling ]
----------------------------------------------*/

.register100-form-title {
    font-size: 24px;
    color: #333333;
    text-align: center;
    margin-bottom: 25px;
}

/*---------------------------------------------
[ Input Field Styling ]
----------------------------------------------*/

.wrap-register-input100 {
    position: relative;
    margin-bottom: 20px;
}

.register-input100 {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;  /* Bordure légère */
    font-size: 16px;
    color: #666666;
    background: #f9f9f9;
    transition: border-color 0.3s;
}

.register-input100:focus {
    border-color: #1a9ee2; /* Couleur de focus sur l'input */
    outline: none;
}

/*---------------------------------------------
[ Button Styling ]
----------------------------------------------*/

.container-register100-form-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.register100-form-btn {
    width: 100%;
    padding: 12px;
    background-color: #1a9ee2;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.register100-form-btn:hover {
    background-color: #1570a6;
}

/*---------------------------------------------
[ Responsive Styling ]
----------------------------------------------*/

@media (max-width: 576px) {
    .container-register100 {
        padding: 15px;
    }

    .wrap-register100 {
        padding: 20px 10px;
    }

    .register-input100 {
        padding: 10px 12px;
    }
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.content {
	margin-top: 4%;
    flex: 1;
    padding: 16px 16px 100px 16px;
    text-align: left;
}
/*---------------------------------------------
[ Barre de Navigation ]
----------------------------------------------*/
.navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(145deg, #1a3a5c 0%, #25688f 50%, #389cdc 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 20px 0;
    box-shadow: 0 -4px 24px rgba(37, 104, 143, 0.3);
    z-index: 1000;
    border-radius: 20px 20px 0 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    border-radius: 12px;
    position: relative;
}

.nav-item img {
    height: 24px;
    width: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nav-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

/* Effet hover pour les items normaux */
.nav-item:not(.nav-center):hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-item:not(.nav-center):active {
    transform: translateY(0) scale(0.95);
}

.nav-item:not(.nav-center):hover img {
    transform: scale(1.1);
}

.nav-item:not(.nav-center):hover span {
    color: #fff;
}

/* Bouton central FAB (Floating Action Button) */
/* Bouton central FAB (Floating Action Button) */
.nav-center {
    position: relative;
    padding: 0;
}

.fab-button {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plus-icon svg {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}

.plus-icon svg path {
    transition: stroke 0.3s ease;
}

/* Animation du bouton quand le menu est ouvert */
.fab-button.active {
    transform: rotate(45deg) !important;
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.4);
}

.fab-button.active svg path {
    stroke: #e74c3c !important;
}

/* Hover uniquement sur desktop */
@media (hover: hover) and (pointer: fine) {
    .nav-center:not(.menu-open):hover .fab-button {
        transform: scale(1.1);
        box-shadow: 0 12px 28px rgba(56, 156, 220, 0.4);
    }
    
    .nav-center:not(.menu-open):active .fab-button {
        transform: scale(1.0);
    }
}

/* Effet tactile sur mobile uniquement */
@media (hover: none) and (pointer: coarse) {
    .nav-center:active .fab-button:not(.active) {
        transform: scale(0.95);
    }
}

.fab-button:not(.active) {
    animation: none;
}

/* Responsive */
@media (max-width: 360px) {
    .nav-item img {
        height: 20px;
        width: 20px;
    }
    
    .nav-item span {
        font-size: 10px;
    }
    
    .fab-button {
        width: 58px;
        height: 58px;
    }
    
    .plus-icon {
        font-size: 44px;
    }
}

/*---------------------------------------------
[ Menu + ]
----------------------------------------------*/

/* Menu contextuel */
.action-menu {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
}

.action-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 20px;
    background: linear-gradient(145deg, #1a3a5c 0%, #25688f 50%, #389cdc 100%);
    color: white;
}

.menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-menu {
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
    font-weight: 300;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.menu-items {
    max-height: 400px;
    overflow-y: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: #f8f9fa;
}

.menu-item:active {
    background: #e9ecef;
    transform: scale(0.98);
}

.menu-icon {
    font-size: 32px;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.menu-text {
    flex: 1;
}

.menu-text strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.menu-text small {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animation du bouton + quand le menu est ouvert */
.fab-button.active {
    transform: rotate(45deg);
}

.fab-button.active svg path {
    stroke: #e74c3c;
}




/*---------------------------------------------
[ notification ]
----------------------------------------------*/
.phone-notification {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(90deg, #5bc951, #1b9fdf);
  color: white;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 90%; /* Limite la largeur de la notification */
  width: auto; /* Ajuste automatiquement selon le contenu */
  overflow: hidden; /* Assure que le contenu reste dans le conteneur */
  word-wrap: break-word; /* Gère les longs mots */
  overflow-wrap: break-word;
  opacity: 0;
  animation: slide-in 0.5s forwards;
  font-family: 'Arial', sans-serif;
}

.notification-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.notification-content {
  flex-grow: 1;
  max-width: 75%; /* Limite l'espace du texte pour éviter qu'il ne déborde */
}

.notification-content .title {
  font-weight: bold;
  margin: 0;
  font-size: 16px;
}

.notification-content .message {
  margin: 0;
  font-size: 14px;
  white-space: normal; /* Permet de revenir à la ligne */
  word-wrap: break-word; /* Force le texte à revenir à la ligne si nécessaire */
}

.time {
  font-size: 12px;
  opacity: 0.8;
  white-space: nowrap; /* Empêche le texte de l'heure de se couper */
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------------------------
[ envoie sms/mail/notif ]
----------------------------------------------*/

/* Style de base pour la page */
body.send-body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1.send-title {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style pour le formulaire */
form.send-form {
    max-width: 500px;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

label.send-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
    font-size: 16px;
}

input[type="radio"].send-radio {
    margin-right: 10px;
}

textarea.send-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Style pour le bouton */
button.send-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button.send-button:hover {
    background-color: #0056b3;
}

/* Responsivité : le formulaire s'adapte aux petits écrans */
@media (max-width: 600px) {
    form.send-form {
        padding: 20px;
    }

    h1.send-title {
        font-size: 20px;
    }

    button.send-button {
        font-size: 14px;
        padding: 10px;
    }
}

/*---------------------------------------------
[ Creation compte ]
----------------------------------------------*/
/* From Uiverse.io by hakemdamer222 */ 
.buttonPassword,
.buttonPassword:focus {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 0.7rem;
  background-color: #00bfff; /* Couleur de fond simple */
  border: 2px solid #00bfff; /* Bordure de la même couleur */
  color: white; /* Texte en blanc */
  cursor: pointer;
  transition: 0.1s;
}

.buttonPassword:active {
  background-color: #008fbf; /* Légère variation de couleur au clic */
  border: 2px solid #008fbf;
}




/* Conteneur qui centre le formulaire avec le fond en dégradé */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #00bfff, #32cd32); /* Dégradé bleu à vert */
}

/* Style du formulaire */
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Ombre pour profondeur */
}

/* Le reste du CSS reste inchangé */

.title {
    font-size: 28px;
    font-weight: 600;
    color: #00bfff;
    text-align: center;
}

.message, 
.signin {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.flex {
    display: flex;
    width: 100%;
    gap: 6px;
}

.form label {
    position: relative;
}

.form label .input {
    background-color: #f0f7ff;
    color: #333;
    width: 100%;
    padding: 20px 10px 10px 10px;
    outline: 0;
    border: 1px solid #ccdce5;
    border-radius: 8px;
    font-size: 16px;
}

.form label .input + span {
    position: absolute;
    left: 12px;
    top: 1px;
    font-size: 16px;
    color: #888;
    transition: 0.3s ease;
    pointer-events: none;
}

.form label .input:focus + span,
.form label .input:not(:placeholder-shown) + span {
    top: 5px;
    font-size: 12px;
    color: #00bfff;
}

.form label .input::placeholder {
    color: transparent;
}

.submit {
    background-color: #00bfff;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}


.submit:hover {
    background-color: #009ac2;
}

.signin {
    text-align: center;
    color: #333;
    font-size: 14px;
    margin-top: 10px;
}

.signin a {
    color: #00bfff;
    text-decoration: none;
}

.signin a:hover {
    text-decoration: underline;
}


/*---------------------------------------------
[ Recherche secretariat ]
----------------------------------------------*/

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px; /* Ajout d'un espace entre le formulaire et le tableau */
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.search-form {
    margin-bottom: 20px;
}

.search-form input {
    padding: 8px;
    font-size: 14px;
}

.search-form button {
    padding: 8px 12px;
    font-size: 14px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #45a049;
}

/*---------------------------------------------
[ menu secretariat ]
----------------------------------------------*/

.menu-container {
    text-align: center;
    margin-top: 100px;
}

.logo h1 {
    font-size: 48px;
    letter-spacing: 5px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    margin: 20px 0;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: yellow;
}

.active {
    color: yellow;
}

 .ok-button {
            font-weight: bold; /* Met le texte en gras */
            font-size: 20px; /* Augmente la taille de la police */
            padding: 10px 20px; /* Ajoute du rembourrage autour du texte */
            cursor: pointer; /* Change le curseur au survol */
            display: block; /* Permet de centrer le bouton */
            margin: 20px auto; /* Centre le bouton */
            background-color: #4CAF50; /* Couleur de fond */
            color: white; /* Couleur du texte */
            border: none; /* Supprime les bordures */
            border-radius: 5px; /* Ajoute des coins arrondis */
            text-align: center; /* Centre le texte */
        }
		
/*---------------------------------------------
[ chat messagerie ]
----------------------------------------------*/

.send-container {
    position: fixed; /* Positionné de façon fixe */
    bottom: 100px; /* Juste au-dessus de la barre de navigation */
    width: calc(100% - 20px); /* Ajustement pour laisser de l'espace autour */
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 0 10px; /* Supprimez le margin:10px pour éviter le décalage */
    border-radius: 10px;
    background-color: white; /* Assurez-vous qu'il ait un fond visible */
    z-index: 999; /* Un niveau inférieur à la barre de navigation */
}


.send-container input[type="text"] {
    background-color: transparent; /* Pas de couleur de fond */
    border: none; /* Pas de bordure */
    outline: none; /* Retire la bordure du focus */
    width: 100%; /* Prendre toute la largeur disponible */
    padding-left: 10px; /* Un peu de padding pour un meilleur espacement */
    font-size: 16px; /* Taille de police agréable */
}

.send-container img {
    transition: transform 0.2s ease; /* Transition douce pour le zoom */
    cursor: pointer; /* Changer le curseur pour indiquer un clic */
}

.send-container img:active {
    transform: scale(1.5); /* Agrandir l'image lors du clic */
}




.send-container2 {
    position: fixed; /* Positionné de façon fixe */
    bottom: 100px; /* Juste au-dessus de la barre de navigation */
    width: calc(100% - 20px); /* Ajustement pour laisser de l'espace autour */
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 0 10px; /* Supprimez le margin:10px pour éviter le décalage */
    border-radius: 10px;
    background-color: white; /* Assurez-vous qu'il ait un fond visible */
    z-index: 999; /* Un niveau inférieur à la barre de navigation */
}


.send-container2 input[type="text"] {
    background-color: transparent; /* Pas de couleur de fond */
    border: none; /* Pas de bordure */
    outline: none; /* Retire la bordure du focus */
    width: 100%; /* Prendre toute la largeur disponible */
    padding-left: 10px; /* Un peu de padding pour un meilleur espacement */
    font-size: 16px; /* Taille de police agréable */
}

.send-container2 img {
    transition: transform 0.2s ease; /* Transition douce pour le zoom */
    cursor: pointer; /* Changer le curseur pour indiquer un clic */
}

.send-container2 img:active {
    transform: scale(1.5); /* Agrandir l'image lors du clic */
}

#startConv {
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: white;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  font-weight: bold;
  display: none;
}

#startConv:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.MessagePatient {
    background-color: #e8f6f0;
    border-right: 4px solid #38b48b;
    padding: 16px 20px;
    margin: 12px 0 12px auto;
    width: 70%;
    max-width: 480px;
    border-radius: 12px;
    font-family: "Segoe UI", sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.MessagePatient h2 {
    font-weight: 500;
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 8px 0;
    text-align: right;
}

.MessagePatient span {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    display: block;
    word-wrap: break-word;
    word-break: break-word;
    text-align: right;
}

.MessagePatient p {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    text-align: right;
}


.MessageRsud {
    background-color: #f9fafe;
    border-left: 4px solid #4a90e2;
    padding: 16px 20px;
    margin: 12px 0; /* Colle à gauche */
    width: 70%;
    max-width: 480px;
    border-radius: 12px;
    font-family: "Segoe UI", sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.MessageRsud h2 {
    font-weight: 500;
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 8px 0;
}

.MessageRsud span {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    display: block;
    word-wrap: break-word;
    word-break: break-word;
}

.MessageRsud p {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}




.Hist-containerC {
  max-height: calc(100vh - 100px);
    overflow-y: auto; /* Active le défilement vertical */
    overflow-x: hidden; /* Empêche le défilement horizontal */
    padding: 15px; /* Espace intérieur */

   
}





#message-defaut {
    display: block; /* Assure que le span prenne toute la largeur du conteneur */
    text-align: center; /* Centre le texte */
    font-size: 24px; /* Augmente la taille du texte */
    font-weight: bold; /* Met le texte en gras */
    color: #333; /* Ajuste la couleur pour plus de visibilité */
    padding: 20px 0; /* Ajoute de l'espace en haut et en bas */
}





body {
background-color : white;
}


#HeaderOFpage {
    height: 80px; /* Hauteur augmentée */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Contenu aligné à gauche */
    justify-content: flex-start;
    position: relative;
    padding: 13px;
	padding-left: 25px;
    box-sizing: border-box;
}



/* Style pour l'image */
#HeaderOFpage img {
    max-height: 50px; /* Taille ajustée pour le logo */
    width: auto;
    object-fit: contain;
    margin-bottom: 5px; /* Petit espace entre l'image et le texte */
    align-self: flex-start; /* Image alignée à gauche */
    margin-top: 0; /* Pas d'espace en haut */
    margin-left: 0; /* Pas d'espace à gauche */
}


/* Style pour le texte */
.header-text {
    font-family: 'Quicksand', sans-serif; 
    font-size: 20px;
    color: #25688f; /* Gris foncé */
    font-weight: 600;
    margin-top: auto; /* Positionne le texte sous le logo */
    text-align: left;
}

.header-text2 {
    font-family: 'Quicksand', sans-serif; 
    font-size: 18px;
    color: #25688f; /* Gris foncé */
    font-weight: 600;
    margin-top: auto; /* Positionne le texte sous le logo */
    text-align: left;
}


/* Interventions */
.notif-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(37,104,143,0.08);
}

.notibadge {
    background: linear-gradient(145deg, #1a3a5c 0%, #25688f 50%, #389cdc 100%);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    flex-shrink: 0;
    min-width: 44px;
}

.notibadge-day {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.notibadge-month {
    font-family: 'Quicksand', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-top: 2px;
}

.notibody-wrapper {
    flex: 1;
    min-width: 0;
}

.notititle {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a3a5c;
    margin: 0 0 4px 0;
}

.notibody {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notiglow, .notiborderglow { display: none; }


 
#parentBonjour {
    padding: 0 16px 12px 16px;
}

#BonjourDiv {
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(37,104,143,0.08);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#bonjour-salut {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

#bonjour-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
    line-height: 1.2;
}



/* From Uiverse.io by barisdogansutcu */ 
#circle-loader {
 width: 1.75em;
 transform-origin: center;
 animation: rotate4 2s linear infinite;
}

#circle-loader-path {
 fill: none;
 stroke: hsl(214, 97%, 59%);
 stroke-width: 2;
 stroke-dasharray: 1, 200;
 stroke-dashoffset: 0;
 stroke-linecap: round;
 animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
 100% {
  transform: rotate(360deg);
 }
}

@keyframes dash4 {
 0% {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
 }

 50% {
  stroke-dasharray: 90, 200;
  stroke-dashoffset: -35px;
 }

 100% {
  stroke-dashoffset: -125px;
 }
}




.videoDiv video {
 
   
   
}

video::-webkit-media-controls {
    display: none !important; /* Masque les contrôles sur Chrome et Safari */
}

video {
    cursor: pointer; /* Change le curseur pour indiquer qu'on peut cliquer */
    object-fit: cover; /* Ajuste la vidéo pour remplir la div sans déformation */
	border-radius: 8px;
	  width: 100%;
    height: auto;
}


/* From Uiverse.io by akshat-patel28 */ 
.videoDiv {
	margin: auto;
	margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 280px;
  max-height: 330px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.08),
    -4px -4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  box-sizing: border-box;
  padding: 10px;
}

.videoDiv:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1),
    -4px -4px 12px rgba(0, 0, 0, 0.08);
}

.video-container {
  width: 100%;
  height: 64%;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
   padding: 5px;
   box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
   overflow: hidden;
}

.image-icon {
  font-size: 40px;
}

.video-title {
  margin: 0;
  font-size: 17px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: #1797b8;
  cursor: default;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.video-des {
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin: 0;
  font-size: 13px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #1797b8;
  cursor: default;
}


/* ==============================================
   RESPONSIVE — TABLETTE PORTRAIT (min-width: 768px)
   ============================================== */
@media (min-width: 768px) {

  html {
    background-color: #e8edf2;
  }

  body {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.12);
    min-height: 100vh;
  }

  /* Page login : annuler le max-width du body pour garder le fond gradient plein écran */
  body:has(.limiter) {
    max-width: none;
    background: none;
    box-shadow: none;
  }

  /* Login : centrer proprement le formulaire sur desktop */
  .wrap-login100 {
    width: 960px;
    max-width: 95%;
    padding: 80px 80px 40px 80px;
  }

  .login100-pic {
    width: 316px;
    display: block;
  }

  .login100-form {
    width: 320px;
  }

  .navbar {
    max-width: 700px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .send-container,
  .send-container2 {
    max-width: 680px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    width: calc(100% - 20px);
  }

  .action-menu {
    max-width: 500px;
  }

  .notif-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .notibadge-day  { font-size: 24px; }
  .notititle      { font-size: 16px; }

  .content {
    padding: 16px 24px 100px 24px;
  }
}


/* ==============================================
   RESPONSIVE — TABLETTE LANDSCAPE (min-width: 1024px)
   ============================================== */
@media (min-width: 1024px) {

  body {
    max-width: 900px;
  }

  body:has(.limiter) {
    max-width: none;
  }

  .navbar {
    max-width: 900px;
  }

  .send-container,
  .send-container2 {
    max-width: 880px;
    width: calc(100% - 40px);
  }

  .content {
    padding: 20px 32px 100px 32px;
  }

  .notif-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .notification {
    padding: 16px 20px;
  }

  #bonjour-name  { font-size: 26px; }
  #bonjour-salut { font-size: 13px; }

  .header-text  { font-size: 22px; }
  .header-text2 { font-size: 19px; }

  #HeaderOFpage {
    height: 90px;
    padding: 16px 32px;
  }

  #parentBonjour {
    padding: 0 32px 16px 32px;
  }

  #BonjourDiv {
    padding: 22px 28px;
  }

  /* Messages plus larges */
  .MessagePatient,
  .MessageRsud {
    max-width: 600px;
  }

  /* Vidéos côte à côte */
  .videoDiv {
    width: 340px;
  }

  /* Formulaires centrés et confortables */
  form.send-form {
    max-width: 600px;
    margin: 0 auto;
  }

  .container-register100 {
    max-width: 480px;
  }
}


/* ==============================================
   RESPONSIVE — DESKTOP (min-width: 1280px)
   ============================================== */
@media (min-width: 1280px) {

  body {
    max-width: 1100px;
  }

  body:has(.limiter) {
    max-width: none;
  }

  .navbar {
    max-width: 1100px;
    padding: 10px 0 22px 0;
  }

  .send-container,
  .send-container2 {
    max-width: 1060px;
    width: calc(100% - 40px);
  }

  .content {
    padding: 24px 48px 110px 48px;
  }

  #HeaderOFpage {
    height: 100px;
    padding: 18px 48px;
  }

  #HeaderOFpage img {
    max-height: 55px;
  }

  #parentBonjour {
    padding: 0 48px 20px 48px;
  }

  #BonjourDiv {
    padding: 24px 32px;
    border-radius: 20px;
  }

  #bonjour-name  { font-size: 28px; }
  #bonjour-salut { font-size: 14px; letter-spacing: 1.5px; }

  .header-text  { font-size: 24px; }
  .header-text2 { font-size: 20px; }

  /* 3 colonnes d'interventions */
  .notif-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }

  .notification {
    padding: 18px 22px;
    border-radius: 16px;
  }

  .notibadge {
    padding: 10px 14px;
    border-radius: 12px;
  }

  .notibadge-day  { font-size: 26px; }
  .notititle      { font-size: 17px; }
  .notibody       { font-size: 13px; }

  /* Messages */
  .MessagePatient,
  .MessageRsud {
    max-width: 700px;
  }

  .MessagePatient span,
  .MessageRsud span {
    font-size: 18px;
  }

  /* Vidéos */
  .videoDiv {
    width: 380px;
    height: 310px;
  }

  /* Formulaires */
  form.send-form {
    max-width: 700px;
    padding: 40px;
  }

  .container-register100 {
    max-width: 520px;
    padding: 30px;
  }

  .wrap-login100 {
    padding: 80px 100px 40px 80px;
  }

  /* Menu action plus large */
  .action-menu {
    max-width: 550px;
  }

  .menu-item {
    padding: 18px 24px;
  }

  .menu-text strong { font-size: 16px; }
  .menu-text small  { font-size: 13px; }

  /* Navbar items plus espacés */
  .nav-item {
    padding: 10px 18px;
  }

  .nav-item img {
    height: 26px;
    width: 26px;
  }

  .nav-item span {
    font-size: 12px;
  }

  .fab-button {
    width: 68px;
    height: 68px;
  }
}


/* ==============================================
   RESPONSIVE — GRAND ÉCRAN (min-width: 1600px)
   ============================================== */
@media (min-width: 1600px) {

  body {
    max-width: 1300px;
  }

  body:has(.limiter) {
    max-width: none;
  }

  .navbar {
    max-width: 1300px;
  }

  .send-container,
  .send-container2 {
    max-width: 1260px;
  }

  .content {
    padding: 28px 64px 120px 64px;
  }

  #HeaderOFpage {
    padding: 20px 64px;
  }

  #parentBonjour {
    padding: 0 64px 24px 64px;
  }

  #BonjourDiv {
    padding: 28px 40px;
  }

  #bonjour-name  { font-size: 32px; }
  .header-text   { font-size: 26px; }
  .header-text2  { font-size: 22px; }

  /* 4 colonnes d'interventions */
  .notif-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .notification {
    padding: 20px 24px;
  }

  .notibadge-day { font-size: 28px; }
  .notititle     { font-size: 18px; }
  .notibody      { font-size: 14px; }

  /* Messages */
  .MessagePatient,
  .MessageRsud {
    max-width: 800px;
  }

  /* Vidéos encore plus larges */
  .videoDiv {
    width: 420px;
    height: 340px;
  }

  .video-title { font-size: 18px; }
  .video-des   { font-size: 14px; }

  /* Navbar items */
  .nav-item {
    padding: 12px 24px;
  }

  .nav-item img {
    height: 28px;
    width: 28px;
  }

  .nav-item span {
    font-size: 13px;
  }
}


/* ==============================================
   RESPONSIVE — ULTRA-WIDE (min-width: 1920px)
   ============================================== */
@media (min-width: 1920px) {

  body {
    max-width: 1500px;
  }

  body:has(.limiter) {
    max-width: none;
  }

  .navbar {
    max-width: 1500px;
  }

  .send-container,
  .send-container2 {
    max-width: 1460px;
  }

  .content {
    padding: 32px 80px 130px 80px;
  }

  #HeaderOFpage {
    height: 110px;
    padding: 22px 80px;
  }

  #HeaderOFpage img {
    max-height: 60px;
  }

  #parentBonjour {
    padding: 0 80px 28px 80px;
  }

  #BonjourDiv {
    padding: 32px 48px;
    border-radius: 22px;
  }

  #bonjour-name  { font-size: 36px; }
  #bonjour-salut { font-size: 15px; }
  .header-text   { font-size: 28px; }
  .header-text2  { font-size: 24px; }

  .notif-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }

  .notification {
    padding: 22px 26px;
    border-radius: 18px;
  }

  .notibadge {
    padding: 12px 16px;
    border-radius: 14px;
    min-width: 52px;
  }

  .notibadge-day { font-size: 30px; }
  .notititle     { font-size: 19px; }
  .notibody      { font-size: 15px; }

  .MessagePatient,
  .MessageRsud {
    max-width: 900px;
    padding: 20px 24px;
  }

  .MessagePatient span,
  .MessageRsud span {
    font-size: 20px;
  }

  .videoDiv {
    width: 460px;
    height: 370px;
  }

  form.send-form {
    max-width: 800px;
    padding: 48px;
  }

  .container-register100 {
    max-width: 580px;
    padding: 36px;
  }

  .action-menu {
    max-width: 620px;
  }
}
