body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f2f5; /* fond gris clair */
  color: #333;
  height: 100%;
  min-height: 100vh;
  width: 100%;
}






.title0{
	color: #60a5fa;
	font-size: 15px;
	font-weight: bold;
	padding: 5px;
}

.title1{
  color: #0077cc;
  font-size: 20px;
  font-weight: bold;
  padding: 5px;
 
 text-align: center;
}


.subtitle0{
	font-size: 40px;
	color: black;
	font-weight: bold;
    padding: 5px;
}



.body0 {
  display: block;
 
  
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(135,206,250,0.3); /* shadow bleu ciel */
  padding: 10px 20px;
  display: flex;
 height: 50px;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
}

.header0 {
 width: 100%;
  display: flex;
}

.bt-left{
width: 50%;
display: flex;
}


.bt-right{
width: 50%;
display: flex;
justify-content: flex-end;

}

.icon-btn svg {
  width: 40px;
  height: 40px;
  color: #2563eb;
  padding: 5px;
  
}


.profil0 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 50px;
}

.notif0 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e5e7eb;      /* gris clair */
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(135,206,250,0.12); /* ombre bleue légère */
}

.notif0:hover {
  background: #f3f6fa;            /* gris très clair au hover */
  border-color: #60a5fa; 
     /* bleu clair au hover */
}
.notif0 svg {
  width: 24px;
  height: 24px;
  color: gray;
}

.bt-avatar0 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #e5e7eb;      /* gris clair */
  border-radius: 999px;
  height: 44px;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 6px rgba(135,206,250,0.12);
}

.bt-avatar0:hover {
  background: #f3f6fa;            /* gris très clair hover */
  border-color: #60a5fa;          /* bleu clair au hover */
}

.bt-avatar0 svg {
  width: 30px;
  height: 30px;
  color: #0077cc;
}

.sp-avatar0 {
  font-weight: 600;
  color: #333;
}

/* Layout body */
.body1 {
  display: flex;
  flex: 1;
  background-color: #f0f2f5;
}

/* Sidebar */
.sidebar0 {
  width: 240px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(135,206,250,0.3);
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: calc(100vh - 60px); /* assuming header 60px */
  position: fixed;
  top: 0px;
  
  height: 100vh;
}

.menu {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Profil sidebar */
.profil1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  position: relative;
  top: 50px;
}

.img-profile1 {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  background-color: #ddd;
}

.post-profile1{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color:#0077cc;
	
}

.menu-title{
	background-color: white;
	border-radius: 0px;
	color:#0077cc;
	padding: 10px;
	font-weight: bold;
	border-bottom: 2px solid  #e5e7eb;  
	font-size: 20px;
}

/* Navigation */
.navigation0 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-menu {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: gray;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-menu:hover {
  background-color: #e0f2ff; /* bleu ciel clair au hover */
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  color: #0077cc;
}

.footer-sidebar{
	font-size: 12px;
	color: gray;
	bottom: 10px;
	position: fixed;
	margin: auto 50px;
}

/* Main content */
.main0 {
  width: 100%;
  display: flex; /* inline-flex → flex (plus standard pour un conteneur principal) */
  position: relative;
  top: 60px;
  margin: 0% 0% auto 20%; 
  padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;

}

.main1{
  width: 100%;
  display: block;
  position: relative;
  top: 60px;
  margin: 0% 0% auto 20%; 
  padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;

}

.main{
  width: 100%;
  display: block;
  position: relative;
  margin: 10% auto; 
  padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;

}

.container0 {
  padding: 10px;
  display: block; 
 width: 65%;
}

.container1 {
  height: 73vh;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  margin: 35px 5px;
  border-radius: 10px;
  padding: 20px;
  
}

.container2 {
  height: 73vh;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);

  border-radius: 10px;
  padding: 20px;
  
}


.client0 {
  margin: 20px;
  display: flex;
  height: 30vh;
  width: 95%;

 
}

.client1 {
  margin: 10px;
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  border-radius: 10px;
 width: 100%;
  flex-basis: 200px; 
}

.stat0 {
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  border-radius: 10px;
  margin: 25px;

}

.container2 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(59,130,246,0.08);
  padding: 20px;
  width: 100%;
  margin: 5px 35px;
}

.stats-title {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.15em;
}

.stats-canvas {
  width: 100%;
  height: 60vh;
  margin: auto;
}


.container3 {
  display: flex;
  gap: 5px;
 margin: 10px  25px;
   width: 100%;
}

.tableau0 {
  margin: 10px;
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  border-radius: 10px;
  background: #fff;
  border-radius: 8px;
 width: 50%;
overflow: auto;
height: 80vh;
 
 
}


.stat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97em;
  background: transparent;
}

.stat-table thead th {
  
  color: gray;
  padding: 12px 8px;
  text-align: left;
  font-weight: 700;
  font-size: 1em;
   border-bottom: 2px solid  #60a5fa;
  letter-spacing: 0.2px;
}

.stat-table tbody td {
  padding: 10px 8px;
  border-bottom: 1px solid #e5e7eb;
  color: #333;
 
 
}



.stat-table tbody td svg{
  color: gray;
  width: 40px;
  height: 40px;

}

.stat-table tbody tr:hover {
  background: #e0f2ff;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);


}


/*formulaire*/

.container5 {
  display: flex; /* inline-flex → flex (plus standard pour un conteneur principal) */

 padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin: 10% auto;

}

.form-container0 {
 
 background-color: white;   /* Bleu ciel très clair */

  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(59,130,246,0.10);
  padding: 32px 22px 22px 22px;
  max-width: 700px;
  margin: 28px auto;
}

.modern-form {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;

}

.form-col {
  flex: 1;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modern-form label {
  color: gray;
  font-weight: 600;
 
  font-size: 12px;
}

.modern-form input,
.modern-form select
{
  padding: 11px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  background: #f6f9fc;
  color: #222;
  font-size: 1em;
  transition: border 0.18s, box-shadow 0.18s;
  outline: none;
  margin-bottom: 2px;
}

.modern-form input[type="file"] {
  padding: 9px 5px;
  background: transparent;
}

.modern-form input:focus,
.modern-form select:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 8px 0 #c7e5fb;
  background: #eaf4fd;
}



.form-actions {
  flex-basis: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.form-actions button {
  background: linear-gradient(to right, #60a5fa, #2563eb);
  color: #fff;
  font-weight: 700;
  padding: 12px 34px;
  border: none;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(59,130,246,0.06);
  font-size: 1em;
  transition: background 0.2s;
  cursor: pointer;
}

.form-actions button:hover {
  background: linear-gradient(to right, #2563eb, #60a5fa);
}




/*page activation*/

.container8{
  display: flex;
  
  width: 80%;
  justify-content: space-around;
   flex-wrap: wrap;
  margin: 10% auto 0;
}

.container13{

  display: block;
    width: 80%;
margin: 0% auto 5%;

}

.status0{
display: block;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(59,130,246,0.10);
  margin: 10px;
  width: 20%;
  text-align: center;

}


.status-section {
  background: #f6f9fc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(59,130,246,0.07);
  padding: 18px 22px 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 210px;
  max-width: 250px;
  width: 100%;
  margin-bottom: 12px;
}
.status-label {
  color: gray;
  font-weight: 650;
  font-size: 1.10em;
  margin-top: 30px;
}
.subtitle0 {
  color: #2563eb;
  font-size: 1.12em;
  font-weight: 700;
  background: #eaf4fd;
  border-radius: 8px;
  padding: 7px 16px;
  margin-top: 6px;
}
.donut-box {
  position: relative;
  width: 100px;
  height: 100px;
  margin:auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-box canvas {
  width: 130px !important; height: 130px !important;
}
.donut-center {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35em; font-weight: 800; color: #2563eb; pointer-events: none;
}
.donut-desc {
  margin-top: 8px;
  text-align: center;
  color: #2563eb;
  font-weight: 600;
  font-size: 1.01em;
}


.modern-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 1em;
  box-shadow: 0 2px 10px rgba(59,130,246,0.07);
  border-radius: 16px;
  overflow: hidden;
  margin: 20px auto;

  overflow: auto;
  height: 30vh;
}

.modern-table thead th {
  background: none;
  color: gray;
  padding: 13px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 1.04em;
  letter-spacing: 0.3px;
  border-bottom: 2px solid gray;
}

.modern-table tbody td {
  padding: 12px 10px;
  color: black;
  font-weight: bold;
  border-bottom: 1px solid #e5e7eb;
  background: #f6f9fc;
  transition: background 0.17s;
  text-align: center;
}

.modern-table tbody tr {
  transition: background 0.18s;
}


.modern-table tbody tr:hover td {
    background: #e0f2ff;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  
}

/* Avatar style */
.avatar-table {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 5px #bae6fd;
  border: 2px solid #3b82f6;
}

/* Status tags */
.status-tag {
  padding: 5px 16px;
  font-weight: 700;
  font-size: 0.98em;
  display: inline-block;
  color: #2563eb;
 
}
.status-tag.actif    {  color: #059669; width:50%; }
.status-tag.attente  {  color: #f59e24; width:50%;}
.status-tag.inactif  { color: #dc2626; width:50%; }



.modern-table tbody td svg{
  color: gray;
  width: 40px;
  height: 40px;

}



.add-contact-btn {
  margin-top: 12px;
  padding: 9px 20px;
  background: linear-gradient(to right, #60a5fa, #2563eb);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 1px 5px rgba(59,130,246,0.07);
}
.add-contact-btn:hover {
  background: linear-gradient(to right, #2563eb, #60a5fa);
}
.contact-section:not(:first-child) {
  border-top: 2px dashed #93c5fd;
  padding-top: 14px;
  margin-top: 8px;
}




.checkbox-group {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.checkbox-label {
  --size: 20px; /* MODIFIE ici la taille globale ! */
  position: relative;
  display: flex;
  align-items: center;
  color: #2563eb;
  font-weight: 600;
  font-size: 1.04em;
  cursor: pointer;
  gap: 8px;
}
.checkbox-label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: var(--size);
  height: var(--size);
}
.custom-check {
  width: var(--size);
  height: var(--size);
  border: 2.5px solid #93c5fd;
  border-radius: 50%; /* très important: rend le bouton parfaitement rond */
  background: #f0f9ff;
  display: inline-block;
  position: relative;
  transition: border-color 0.18s, background 0.18s;
  margin-right: 7px;
}
.checkbox-label input[type="checkbox"]:checked + .custom-check {
  
  background: #60a5fa;
}
.checkbox-label input[type="checkbox"]:checked + .custom-check::after {
  content: '';
  position: absolute;
  left: 32%;
  top: 28%;
  width: 36%;
  height: 36%;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 1px 4px #1e3a8a33;
}


.link-form {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
}
.link-input {
  font-size: 1.05em;
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid #93c5fd;
  background: #f0f9ff;
  color: #2563eb;
  font-weight: 600;
  transition: border 0.16s;
}
.link-input:focus {
  border-color: #2563eb;
  outline: none;
}
.copy-btn {
  width: 90px;
  border-radius: 8px;
  border: none;
  background:#60a5fa; 
  color: white;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  position: absolute; 
  width: 75px; 
  margin-left: 430px;
height: 42px;
  box-shadow: 0 1px 6px #bae6fd66;
}



/*account0*/
.container21{
  background-color: white;
  margin: 7% 1% 0% 22%;
  width: 100%;
  box-shadow: 0 1px 6px #bae6fd66;
  border-radius: 10px;
}

.container34{
  
  margin:10% auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

}

.card0{
  display: block;
background-color: rgb(176, 224, 230);   /* Bleu ciel très clair */

  box-shadow: 0 1px 6px #bae6fd66;
  height: 450px;
  width: 315px;
  border-radius: 10px;
  margin-top: 20px;
}

.card-image{
  height: 270px;
  width: 300px;
  
  border-radius: 10px;
  margin: 2px;
  padding: 5px;
}

.card-btn{
  width:90%; 
  background-color:#60a5fa; 
  color: white; 
  border: none; 
  border-radius: 10px;
   padding: 10px;
    margin: 5px 15px 5px 15px;
    font-size: 17px;
    font-weight: bold;
  }





.background {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.background-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.background-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Filtre bleu semi-transparent */
.background-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.4);
    z-index: 1;
}

.container55 {
    position: relative;
    z-index: 2;
    display: block;
    justify-content: center;
    align-items: center;

}

.signIn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
}

.signIn-img {
    text-align: center;
    margin-bottom: 30px;
}

.signIn-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.signIn label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.signIn label:first-of-type {
    margin-top: 0;
}

.signIn select{
width: 98%;
padding: 12px 15px;
 border: 2px solid rgba(255, 255, 255, 0.3);
 background-color: rgba(255, 255, 255, 0.1);
 font-size: 14px;
 border-radius: 8px;
 margin: 10px auto;
 color: black;
}

.signIn input[type="email"],
.signIn input[type="text"],
.signIn input[type="password"] {
    width: 90%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.signIn input[type="email"]::placeholder,
.signIn input[type="text"]::placeholder,
.signIn input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signIn input[type="email"]:focus,
.signIn input[type="text"]:focus,
.signIn input[type="password"]:focus {
    outline: none;
    border-color: #60a5fa;
    background-color: rgba(96, 165, 250, 0.15);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.signIn input[type="submit"] {
    width: 99%;
    padding: 12px;
    margin: 5% auto;

    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.signIn input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.6);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.signIn input[type="submit"]:active {
    transform: translateY(0);
}


.bt-back svg{
 color: white;
 position: relative;
 width: 30px;
 height: 30px;
 top: 80px;
left: 10px;
 z-index: 999;
}

.bt-back svg:hover{ color:#3b82f6; box-shadow: 0 1px 2px rgba(96, 165, 250, 0.6);}


/*dashboard client*/

.client2{
   margin: 20px;
  display: flex;
  height: 40vh;
  width: 100%;
  background-color: white;
   box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
    border-radius: 10px;
}

.client3{
  margin: 10px;
  padding: 10px;
 
 width: 100%;
  flex-basis: 200px; 


}


.container89 {
  height: 75vh;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  margin: 30px 25px;
  border-radius: 10px;
  padding: 20px;
  width: 24%;
}

.tableau1 {
  margin: 10px 20px;
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  border-radius: 10px;
  background: #fff;
  border-radius: 8px;
 width: 97%;
overflow: auto;
height: 35vh;
 
}


.form-plan{
  background-color: white;
  margin-top: 40px;
  padding: 7px;
  border-radius: 10px;
  color: gray;
  border: 2px solid #60a5fa;
}

.form-plan:focus{box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);}


.client5 {
  display: flex;
  gap: 10px;
  max-height: 90vh;
  
  margin: 10px auto;
  width: 98%;
  
}

.client8 {
  background: #fff;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  border-radius: 10px;
  padding: 30px; 
  margin: 10px;
  width: 50%;
  min-width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.title2 {
  display: flex;
  align-items: left;
  
  font-size: 17px;
  margin: 4px 0 0 0;
  color: #60a5fa;
}

.subtitle1 {
  display: flex;
  align-items: left;
  font-size: 20px;
  color: darkslategray;
  margin-bottom: 8px;
  font-weight: bold;
  margin-left: 0px;
}



.form-depot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-depot p {
  font-weight: 500;
  margin: 0 0 3px 2px;
  color: #60a5fa;
  font-size: 1.05em;
}

.form-depot select, 
.form-depot input[type="text"],
.form-depot input[type="number"],
.form-depot input[type="file"] {
  background: #fff;
  border: 1.7px solid #60a5fa;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
 
}

.form-depot select:focus, 
.form-depot input[type="text"]:focus,
.form-depot input[type="number"]:focus,
.form-depot input[type="file"]:focus {
  border-color: #60a5fa;
  outline: none;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
}

/* Style pour le bouton submit */
.form-depot input[type="submit"] {
  background: linear-gradient(90deg, #38b6ff 55%, #2563eb 100%);
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s;
  margin-top: 10px;
}

.form-depot input[type="submit"]:hover {
  background: linear-gradient(90deg, #2563eb 30%, #38b6ff 100%);
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
}


.status1{
  background-color: lightgreen;
  color: white;
  font-size: 20px;
  margin: 20px;
  border-radius: 10px;
  height: 30px;
  width: 100px;
  text-align: center;
  align-content: center;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  font-weight: bold;
}




.container144{
  background-color: white;
  margin: 100px auto;
  height: 70vh;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  border-radius: 10px;
  padding: 20px;
}

.container144-infos{
  display: flex;
  width: 100%;
}

.container144-details{

  width: 50%;
}

.search{
  display: flex;
 
  width: 100%;
  margin-left:15px;

}

.input-search{
 padding: 5px;
  border: 1.5px solid #e5e7eb;
  border-radius: 5px 0 0 5px;
  background: #f6f9fc;
  color: #222;
  font-size: 1em;
  width: 15%;
  outline: none;
  
}

.bt-search{

    padding:5px;
    border: none;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
 
}

.container233{
  display: flex;
  width: 77%;
  padding: 10px;
  height: 40vh;
    border-radius: 10px;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
    background-color: white;
    margin:  10px;
    flex-wrap: wrap;
    

}

.compte{
  display: block;
  align-content: space-around;
  width: 20%;
  padding: 20px;
  text-align: center;

}

.form-compte{
position: relative;
width: 100%;
margin: 20px auto;
display: block;

}

.form-compte0{
  display: flex;
  margin: 5px auto;

}

.form-compte select{
  padding: 5px;
  border: 1.5px solid #e5e7eb;
  border-radius: 5px 0 0 5px;
  background: #f6f9fc;
  color: #222;
  font-size: 1em;
  width: 200px;
  outline: none;
}

.form-compte input{
  padding: 5px;
  border: 1.5px solid #e5e7eb;
  border-radius: 5px 0 0 5px;
  background: #f6f9fc;
  color: #222;
  font-size: 1em;
  width: 200px;
  outline: none;
}

.form-compte input[type="submit"]{
    width: 100px;
     padding:7px;
    border: none;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
}

.container377{
  display: flex;
  width: 79%;    
    margin:  10px;
    flex-wrap: wrap;
}

.container610{
  background-color: white;
  margin: 10% auto;
  width: 60%;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  padding: 30px;
  border-radius: 20px;
}

.form-contact{
display: block;

}

.form-contact textarea{
   width: 98%;
   height: 300px;
   border-radius: 10px;
   border: 2px solid #60a5fa;
   padding: 10px;
   color: black;
  font-size:15px;
  font-weight: bold;
  
  font-family: sans-serif;
   
}

.form-contact input[type="text"] {
   width: 20%;
   
   border-radius: 10px;
   border: 1px solid #60a5fa;
   padding: 5px;
   color: black;
  font-size:15px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: sans-serif;
   
}

.form-contact input[type="submit"]{
    font-size: 20px;
    border: none;
    border-radius:5px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    margin-left: 50%;
    padding: 10px;
    width: 50%;
    margin-top: 10px;

}

.container987{
  background-color: white;
  margin: auto;
  width: 90%;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  padding: 30px;
  border-radius: 20px;
  display: block;
  margin-bottom: 50px;
}


.card-message{
  display: block;
  width: 100%;
  border-radius: 10px;
  boder: 2px solid #60a5fa;
  background-color: rgba(135,206,250,0.12);
  margin-bottom: 30px;
}

.header-message{
  display: flex;

}


.header-message svg{
  
  width: 30px;
  height: 30px;
  padding: 10px;
}

.header-message p{
  
color: black;
font-size: 15px;
font-weight: bold;
}

.message{
  width: 98%;
  border-top: 1px  solid black;
  padding: 10px;
}

.date-message{
  display: flex;
 justify-content: flex-end;
  width: 95%;
  padding: 10px;
}

.date-message p{
 font-size: 15px;
 font-weight: bold;
}