/* Styles personnalisés pour le footer sticky */
.min-vh-100 {
  min-height: 100vh;
}

.flex-grow-1 {
  flex-grow: 1;
}

/* S'assurer que le footer reste en bas */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Styles personnalisés pour les boutons */
.btn-outline-warning:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
}

.btn-outline-success:hover {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}


input[type="file"] {
    display: none; /* on cache l'input par défaut */
  }

  #labelImage {
    display: inline-block;
    padding: 8px 16px;
    background: rgb(179, 179, 179);
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }

  #labelImage:hover {
    background: grey;
  }