.tableau {
  background-color: rgba(5, 122, 85, 0.2);
  width:50%;
  margin: 100px auto;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 4px 4px 12px rgb(255, 251, 251);
  @media (max-width: 768px) {
    width: 350px;
    margin: 50px auto;
    border-radius: 8px;
  }
}

.tableau .titre {
  margin: 30px auto;
  color: yellow;
  font-size: 30px;
  font-weight: 900;
  font-family: 'Poppins', Roboto, Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
   @media (max-width: 768px) {
    font-size: 18px;
    font-weight: 900;
   }
}

.grille {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 500px);
    gap: 20px;
    @media (max-width: 768px) {
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(1, auto);
    }
}

.col02 {
  vertical-align: middle;
  place-items: center;
  align-items: center;
  margin: 10px auto;
  max-height: 450px;
  width:auto;
  @media (max-width: 768px) {
    max-height: 250px;
    width: auto;
  }
}

.col01 {
  vertical-align: middle;
  padding: 30px;
  max-height: 450px;
}

.col01 .infoPage { 
  width:auto;
  color: yellow;
}

.col01 p {
  margin-top: 30px;
  width:auto;
  color: yellow;
  font-style: italic;
}

.navigBtn {
  width: auto;
  text-align: center;
  margin: 50px auto;
}

button { 
  display: inline-block;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-shadow: 2px 2px 2px #000;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #087745 0%, #055632 100%);
  color: #ffff00;
  
  font-size: 16px; font-family: Arial, sans-serif; letter-spacing: 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.75);
  transition: opacity 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  transform-origin: center;
  opacity: 1;
}
button:hover { 
  transform: scale(1.03);
  opacity: 0.5;
}
button:active { transform: translateY(1px); }
button:focus { outline: 3px solid rgba(180, 130, 69, 0.7); outline-offset:2px; }
