/* (A) LA VUE LISTE PAR DEFAUT */
#wdg101 {
    width: 80%;
  }
  #wdg101-box {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 5px;
  }
  .wdg101-entete, .wdg101-contenu {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
  }
 
  .wdg101-titre {
    width: 70%;
    margin: 0;
    padding: 0;
    display: inline;
    
  }
  h3 {
    margin: 0;
    display: inline;
  }
  .wdg101-menup {
    width: 30%;
    margin: 0;
    padding: 0;
    display: inline;
  }
  #wdg101 .wdg101-item {
    padding: 10px;
    border: 1px solid #ddd;
  }
  #wdg101 .wdg101-item:nth-child(odd) { background: #f7f7f7; }
  
  /* (B) TRANSFORMATION DE LA VUE GRID */
  #wdg101-box.grid { grid-template-columns: 25% 25% 25% 25%; }
  #wdg101-box.grid .wdg101-item:nth-child(odd) { background: none; }
  
   /* wdg101 MENU */
   .wdg101-commande {
     float: left;
     width: 50%;
     font-size: medium;
     text-align: center;
   }
  
   .galerie-contenu {
    float:left;
    width: 420px;
   }
  
   .img-item {
    float:left;
    text-align: center;
    padding: 5px;
    width: 130px;
    height: 180px;
   }
  
   .wdg101-menu {
    float: right;
     width: 10%;
     font-size: medium;
   }
  
   .titre {
    float: left;
     /* width: 10%; */
     font-size: medium;
   }
  
   button.modifier {
     background-color: green;
     color: #fff;
     cursor: pointer;
   }
  
   button.supprimer {
    background-color: red;
    color: #fff;
    cursor: pointer;
  }
  
   /* wdg101 PROPRIETE */
   .key {
    text-align: center;
   }
  
   .key-item {
     font-size: larger;
     color: #fff;
   }
  
   .wdg101-image {
    width: 100%;
    max-width: 300px;
    height: auto;
   }
  
  /* (X) CORRESPOND AU CORPS HTML */
  html, body { font-family: arial, sans-serif; }

  /* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 10px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}