*{
    margin: 0;
    padding: 0;
    
    text-decoration: none;
    box-sizing: border-box;
}
h1{
    text-align: center;
    font-size: 2rem;
}
header{
    background-color: rgb(209, 209, 209);
    color: aliceblue;
}
section{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.gestion , .produit{
    background-color: blueviolet;
    box-shadow: 10px 5px 5px #2e2d2d;
    border-radius: 5px;
    margin: 5px 5px 5px 0;
    text-align: center;
    height: 80px;
    width: 100px;
    white-space: normal;
    
 }   
 p{
    word-wrap:break-word;
    
 }
 a{
    color: azure;
 }
 .menu2{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px;
    width: 90%;
    
}
#consultation{
   text-align: center;
   
}
#consultation input{
   cursor: pointer;
}
#consultation div{
   margin: 10px;
}
#nomenclature{
   display: flex;
   justify-content: center;
   padding: 10px;
}
#nomenclature div{
   margin: 10px;
   text-align: center;
}
 .box{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px;
    border:1px solid black ;
    border-radius: 5px;
    background-color: #8d8b8b;
 }
  #tableauConsultation{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 50%;
    font-size: 1.5rem;
 }
 
 #tableau{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    width: 85%;
 }
 #tableau , #tableauConsultation {
   justify-items: normal;
    
    margin: 20px auto;
    box-shadow: 1px 5px 5px #bdc3c7;
 }
 #tableau > div , #tableauConsultation > div {
    padding: 12px;
    border-top: 1px solid #e67e22;
    background-color: #fbfefe;
    text-align: center;
 }
 #tableauConsultation > div{
   margin-bottom: 5px;
 }
 #tableau .entete , #tableauConsultation .entete{
    background-color: #d35400;
 }
 /*********** MEDIA QUERIES *****************/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

   #consultation , #nomenclatures {
      font-size: 1.5rem;
   }
   #consultation input , #nomenclatures input { 
      height: 1.5rem;
   }

}

