body {
  font-family: "Lato", Arial, sans-serif;
  background-color: #c8e8d0;
  margin: 0;
  padding: 0;
  /*overflow: hidden;*/
}

.login-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-family: "Parisienne", Arial, sans-serif;
}

h2 {
  font-size: 18px;
}

input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 250px;
  font-size: 16px;
  background-color: white;
}

button {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 200px;
  font-size: 16px;
  background-color: #c8e8d0;
}

button:hover {
  background-color: #adc9b4;
}

/*style pour head/navigation */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title {
  font-family: "Parisienne", Arial, sans-serif;
  font-size: 36px;
  font-weight: bold;
  padding-left: 40px;
  padding-top: 40px;
}

.title a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  margin-top: 5px;
  overflow: hidden;
  border: 2px solid black;
}

.navbar a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 10px 40px;
  text-decoration: none;
}

.navbar a.active {
  border-bottom: 2px solid black;
}

.navbar a:hover {
  background-color: #adc9b4;
}

.logout-btn {
  font-size: 16px;
  cursor: pointer;
  margin-right: 40px;
}

/*-------------Vertical menu-------------*/

.vertical-menu {
  width: 200px;
}

.menu-btn {
  width: 100%;
  padding: 10px;
  text-align: left;
}

.dropdown {
  
  display: none;
}

.menu-btn.active + .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.filtre-container {
  margin: 40px;
  display: flex;
}

.additional-content {
  margin-left: 20px;
}

.additional-content select {
  display: block;
  margin-bottom: 10px;
}

.image-info-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: 20px;
    margin-right: 20px;
    position: relative; /* Add this line */
  }
  
  .image-container {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .img-vetement{
    width: 300px;
    height: 400px;
  }
  
  .titles-container {
    
  }
  
  .titles-container h4 {
    margin-top: 0; /* Remove default margin */
  }
  
  .titles-container p {
    margin-top: 5px; /* Space between titles and paragraphs */
  }
  
  .button-container {
    margin-top: 20px; /* Space between image and button */
  }
  


/*-------------Form pour ajouter vetement-------------*/

.container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  position: relative;
  height: calc(100vh - 25vh);
}

.form-container {
  margin-left: 20vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.row > * {
  margin-right: 10px;
}
.row:last-child {
  margin-bottom: 0;
}
.image-container {
  margin-left: auto;
  margin-right: auto;
}
img {
  width: 300px;
  height: 400px;
}

.tf,
.selecter {
  width: 220px;
  height: 35px;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.btnAjoutVetement {
  width: 220px;
  height: 35px;
}

textarea {
  width: 214px;
  resize: none;
}


