/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.thick strong{
	font-weight:900!important;
	font-size:120%;
}
.smallhr{
	width:20%!important;
	margin: 0 auto; 
}
.spacenorm{
	margin-bottom:3em;
}
.fondcolor{
	background:#d06729;
	border-radius:10px;
	padding:8px 12px;
	display:inline-block;
	color:#fff;
}
.keywords{
	color:#fff;
	background:#d06729;
	padding:8px 12px;
	font-size:.9em;
	border-radius:16px;
}
.warning{
	color:#fff;
	background:#d06729;
	padding:8px 12px;
	font-size:1.2em;
	border-radius:16px;
}
.checked{
	color:#fff;
	background:#3ab449;
	padding:8px 12px;
	font-size:1.2em;
	border-radius:16px;
}
.imagerad img{
	border-radius:40px 70px!important;
}
/* TABLEAUX*/
.has-fixed-layout {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  text-align: left;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.has-fixed-layout th,
.has-fixed-layout td {
  padding: 14px 20px;
}

.has-fixed-layout thead {
  background-color: #d06729; /* couleur de référence */
  color: #fff;
  font-weight: 600;
  text-transform:uppercase;
}

.has-fixed-layout tbody tr:nth-child(odd) {
  background-color: #f9f7f6; /* clair */
}

.has-fixed-layout tbody tr:nth-child(even) {
  background-color: #f1edea; /* légèrement plus soutenu */
}

.has-fixed-layout td:first-child {
  font-weight: 600;
  color: #333;
}

.has-fixed-layout td:last-child {
  color: #555;
}

/* Effet au survol */
.has-fixed-layout tbody tr:hover {
  background-color: #f6e4da;
  transition: background-color 0.2s ease;
}

/********************************************************/
/********************** MOBILE **************************/
/********************************************************/
@media (max-width: 700px) {

  .has-fixed-layout {
    border-collapse: collapse;
    border: none;
    display: flex;
    flex-direction: column;
  }

  .has-fixed-layout * {
    border: none !important;
    box-shadow: none;
  }

  .has-fixed-layout thead {
    display: none;
  }

  .has-fixed-layout tr {
    display: flex;
    flex-direction: column;
    border: none !important; /* ✅ aucune bordure autour des blocs */
    border-radius: 8px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); /* ombre douce et grise, sans effet “ligne” */
    background: transparent;
  }

  .has-fixed-layout td {
    display: block;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  /* Ligne 1 → fond orange + texte blanc */
  .has-fixed-layout td:first-child {
    background-color: #d06729;
    color: #fff;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
  }

  /* Ligne 2 → fond clair + picto croix rouge */
  .has-fixed-layout td:last-child {
    position: relative;
    background-color: #f1edea;
    color: #333;
    padding: 12px 16px 12px 42px;
    border-radius: 0 0 8px 8px;
  }

  .has-fixed-layout td:last-child::before {
    content: "✖";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #d62d20;
    font-size: 1.3em;
    font-weight: bold;
  }
.keywords{
	color:#fff;
	display:inline-flex;
	align-items:center;
	background:#d06729;
	padding:8px 12px;
	font-size:.9em;
	border-radius:16px;
	margin:4px;
}
}