/* style-perso.css */
body {
    font-family: 'Glory';
    /* background-color: whitesmoke; */
    background-image: url('https://recettes.clebs.ch/images/epices.png');
   height: 100vh; /* pleine hauteur de la fenêtre */
  width: 100vw; /* pleine largeur de la fenêtre */


  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh; /* au minimum la hauteur visible */
}
.shadow {
  background-color: white;
}

body, html {
  height: 100%;
  margin: 0;
}


.card-transparent {
  background-color: rgba(255, 255, 255, 0.8); /* blanc à 20% d'opacité */
  /* Vous pouvez ajuster la couleur ici selon besoin */
}



li a:link, li a:visited, a:link, a:visited, a {
  color: black;
}
a:hover {
  color: green;
  text-decoration: none;
}
.form-control {
  border:1px solid #11ac04;
}

/* Suppression du fond et bordure du span input-group-text */

div.input-group > span.input-group-text.no-background-border {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.25rem 0.5rem !important;
}

/* Alignement du texte numérique à droite dans l'input */
.input-group .form-control.text-end {
  text-align: center;
}

/* Exemple: ajustement de la largeur des input-groups */
.input-group-custom-width {
  width: 120px;
}

/* Personnalisation du titre */
h4.mb-0 {
  font-weight: 600;
  color: #333;
}


.half-width {
  width: 95vw;
  max-width: 950px;   
  margin-left: auto;
  margin-right: auto;
}