/* Add your own CSS code here */
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #ffffff;
  text-align: left;
  padding: 4px;
	color:Blue;
}
tr:nth-child(even) {
  background-color: #79dae1;
}
tr:nth-child(odd) {
  background-color: #99e7e2;
}

/* CSS bouton */
.button-action {
  align-items: center;
  appearance: none;
  background-color: #3EB2FD;
  background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 100px;
  border-width: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  font-family: arial,sans-serif;
  font-size: 1.3rem;
  height: auto;
  justify-content: center;
  line-height: 1.5;
  padding: 6px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s,background-position .2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.button-action:active,
.button-action:focus {
  outline: none;
}

.button-21:action {
  background-position: -20px -20px;
}

.button-action:focus:not(:active) {
  box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}
#boutonTarif {
  border-radius: 40%;
  background: green;
	width:7em;
	height: 1.5em; 
	color: white;
}

/* CCS pour le zooming */

img{
  /*width: 200px;*/
  transition: transform .1s;
}

img:hover{
    -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}

