/* Style pour les boîtes d'informations (info boxes) */
.book .important {
    background-color: #e7f3fe;
    border-left: 5px solid #0073e6;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Style pour les boîtes d'avertissements (warning boxes) */
.book .warning {
    background-color: #fff5f5;
    border-left: 5px solid #ff4500;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

/*style for captions */
.book .caption {
    font-size: 14px;
    font-style: italic;
    color: grey;
}

/* CSS pour permettre le défilement horizontal des tables */
.scrollable-table {
  overflow-x: auto;
  display: block;
  white-space: nowrap;
}
