.titre-ajouter-annonce{
    color: rgb(255, 98, 0);
    text-align: center;
    margin-bottom: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
  gap: 16px; /* espace entre lignes et colonnes */
  justify-content: center;
  align-items: center;
  margin: 16px;
}

.photo-slot {
  width: 100px;
  height: 100px;
  border: 1px dashed #ccc;
  background-color: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}

.photo-slot:hover {
  background-color: #e0e0e0;
}

.photo-slot img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}