
@charset "UTF-8";


/*
 Theme Name:   Inspiro ECG
 Theme URI:    http://example.com/twenty-fifteen-child/
 Description:  Inspiro Child Theme
 Author:       Laurence OFFNER
 Author URI:   https://espacecaningeispolsheim.fr
 Template:     inspiro
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         entertainment,food-and-drink,portfolio,one-column,two-columns,right-sidebar,grid-layout,custom-header,custom-menu,custom-logo,full-width-template,theme-options,translation-ready,featured-images,threaded-comments
 Text Domain:  Inspiro ECG
*/

/* conteneur qui gère le scroll vertical et horizontal */
.ecg-table-wrapper {
  max-height: 400px;    /* ajuste la hauteur visible */
  overflow: auto;       /* IMPORTANT : scroll activé ici */
}

/* garder le comportement normal du table */
.ecg-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  table-layout: fixed; /* optionnel : rend les colonnes prévisibles */
  white-space: normal;
}

/* En-tête sticky : le sticky se calcule par rapport à .ecg-table-wrapper */
.ecg-table thead th {
  position: sticky;
  top: 0;
  background-color: #dd9933; /* orange */
  color: #ffffff;
  font-weight: bold;
  z-index: 5; /* s'assurer qu'il est au-dessus des lignes */
  /* facultatif pour éviter que la couleur ne soit partiellement transparente */
  background-clip: padding-box;
}

/* Alternance des lignes */
.ecg-table tbody tr:nth-child(even) {
  background-color: #DDDDDD;
}

/* Bordures et espacement */
.ecg-table th, .ecg-table td {
  padding: 5px;
  border: 1px solid #dddddd;
  min-width: 80px;
  box-sizing: border-box;
}
