/* Add your own CSS code here */
.centrer {
  display: flex;
  justify-content: center;
  align-items: center;
	height:12rem;
}

table {
font-family: arial, sans-serif;
border-collapse: collapse;
	
/*background-image: url("https://localhost/wordpress/wp-content/uploads/2024/04/imageDeFondTableau0-01.png");*/
background-color: #ff5b00; /* For browsers that do not support gradients */
  background-image: linear-gradient(#ffd900,#fd5b00);	
background-repeat: no-repeat;width: 70%;
height: auto;
box-shadow: 10px 10px 30px #708eb5;
}

tr {
	border:hidden;
	border-color: red;
}	
td {
/*border: 1px solid #000000;*/
	border-style: none;
text-align: center;
padding: 0px;
}
/*button {
background-color: transparent;
    color: #fff;
}*/
/* td:hover {background-color: #D6EEEE;} */
/*  css pour bouton animé */ 
.glow-on-hover {
    width: 20rem;
    height:8rem;
    border: none;
    outline:outset ;
    /*color: #00ff00;*/
	  color: #ccffff;
    background: #fff;
    	padding: 0; 
    position: relative;
    z-index: 1000;
    border-radius: 10px;
}
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -6px;
    left:-12px;
    /*background-size: 400%;*/
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
		padding: 0;
}
.glow-on-hover:active {
    color: #00ff00;
		padding: 0;
}
.glow-on-hover:active:after {
    background: transparent;
		padding: 0;
}
.glow-on-hover:hover:before {
    opacity: 1;
	padding: 0;
}
.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: #111;*/
	background:blue; /* fond bouton*/
	padding: 0;
    left: 0;
    top: 0;
    border-radius: 10px;
}
/*@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}*/

.table-prix {
/*  font-family: Arial, Helvetica, sans-serif;  */
  border-collapse: collapse;
  width: 100%;
}

.table-prix td, th {
  border: 2px solid #ddd;
  padding: 12px;
}

.table-prix tr:nth-child(even){background-color: #fdda7a;}

.table-prix tr:hover {background-color: #fffdb3;}

.table-prix th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #04AA6D;
  color: white;
}

/* texts responsive on page */
/* 1. Taille de base pour écrans larges */
body {
    font-size: 0.8rem; 
  /*  line-height: 1.5; */
}

/* 2. Ajustement pour les petits écrans (mobiles< 600px) */
@media screen and (max-width: 600px) {
    body {
        font-size: 0.6rem; /* Le texte est légèrement plus petit */
    }
}