
/*Liste villes*/
.col-city{font-size: 10px; width: 25%; display: inline-block; padding: 0px 0px 0px 20px;}
.col-city A{text-decoration: none !important;}
.col-city A:hover{text-decoration: underline !important;}
@media only screen and (max-width: 1025px) {/* iPad: */
	.col-city{width: 33%;}
}
@media only screen and (max-width: 768px) {/* iPhone: */
	.col-city{width: 50%;}
}


/* Conteneur pour le tableau */
.bp-blog-table-container {
    overflow-x: auto;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Première colonne fixe */
.bp-blog-table-container th:first-child,
.bp-blog-table-container td:first-child {
    position: sticky;
	font-weight: bold;
	background-color: white;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.3);
}

/* Style pour le tableau */
.bp-blog-table-container table {
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
}

/* Cellules du tableau */
.bp-blog-table-container th,
.bp-blog-table-container td {
    border: 1px solid var(--e-global-color-primary);
    padding: 8px;
    text-align: left;
}

/* En-têtes du tableau */
.bp-blog-table-container th {
    background-color: var(--e-global-color-secondary);
	color: var(--e-global-color-primary);
    position: sticky;
    top: 0;
    z-index: 1;
}


