/* .coeff_ero_select {
    position: relative;
    width: max-content;
} */

/* Select year */

.coeff_ero_select .select_text {
    position: relative;
    width: 100%;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}

.coeff_ero_select .select>input {
    display: none;
}

.coeff_ero_select .floating_label input {
    display: flex;
    min-height: 50px;
    border: none;
    padding: 0 16px 0 0;
    color: #919191;
    width: 100%;
    transition: all 0.2s linear;
    -webkit-appearance: none;
    outline: 0;
    color: #595959 !important;
}

.coeff_ero_select .floating_label.select {
    overflow: visible;
    font-size: 14px;
}
.coeff_ero_select .floating_label {
    position: relative;
    width: 100%;
    margin: auto;
    margin-bottom: auto;
    overflow: hidden;
    font-size: 14px;
    padding: 10px 20px;
    background-color: #fff;
    margin-bottom: 50px;
    border: 1px solid rgba(199, 212, 221, 1);
    color: #595959;
}

.coeff_ero_select .select_list {
    position: absolute;
    top: 100%;
    background-color: #fff;
    width: 100%;
    left: 0;
    border: 1px solid red;
    z-index: 10;
    overflow-y: auto;
    max-height: 0;
    transition: max-height .3s;
    opacity: 0;
    border: 1px solid rgba(199, 212, 221, 1);
}

.coeff_ero_select .dropdown .select_text::after {
	transform: rotate(225deg) translateY(-40%);
}

.coeff_ero_select .dropdown .select_list {
	max-height: 150px;
	opacity: 1;
}

.coeff_ero_select input[type="checkbox"] {
	margin-right: 10px;
}

.coeff_ero_select label[for="rgpd"] {
	width: 100%;
	cursor: pointer;
}

.coeff_ero_select label[for="rgpd"] span {
	width: 100%;
	display: block;
}

.coeff_ero_select .select>input {
	display: none;
}

.coeff_ero_select .floating_label.select {
	overflow: visible;
	font-size: 14px;
}

.coeff_ero_select .select_text {
	position: relative;
	width: 100%;
	cursor: pointer;
	height: 100%;
	display: flex;
	align-items: center;
}

.coeff_ero_select .select_text::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg) translateY(-40%);
	margin-left: 10px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	right: 10px;
}

.coeff_ero_select .select_list>input {
	min-height: 0;
	padding: 10px 15px;
	border-bottom: 1px solid rgba(199, 212, 221, 1);
	color: #1d1d1b99;
	line-height: 1.6;
}

.coeff_ero_select .select_list {
	position: absolute;
	top: 100%;
	background-color: #fff;
	width: 100%;
	left: 0;
	border: 1px solid red;
	z-index: 10;
	overflow-y: auto;
	max-height: 0;
	transition: max-height .3s;
	opacity: 0;
	border: 1px solid rgba(199, 212, 221, 1);
}

.coeff_ero_select .dropdown .select_text::after {
	transform: rotate(225deg) translateY(-40%);
}

.coeff_ero_select .dropdown .select_list {
	max-height: 150px;
	opacity: 1;
}

.coeff_ero_select .select_list_single {
	padding: 10px 15px;
	border-bottom: 1px solid rgba(199, 212, 221, 1);
	cursor: pointer;
}

.coeff_ero_select .select_list_single:not(.no_result):hover,
.select_list_single_selected {
	background-color: rgba(199, 212, 221, 1);
}

/* End select year */

.coeff_ero_select.loading::after {
    content: '';
    height: 0;
    width: 0;
    padding: 5px;
    border: 2px solid #005fae;
    border-right-color: #888;
    border-radius: 22px;
    -webkit-animation: rotate 1s infinite linear;
    position: absolute;
    left: 110%;
    top: 20%;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

/* styles_table.css */

/* Styles généraux du tableau */
.table_coeff {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* En-tête du tableau */
.title_table_coeff {
    background-color: #ffffff; /* Bleu corporate */
    color: #ffffff !important; /* Texte en blanc */
    font-weight: bold;
    padding: 12px;
    border: 1px solid #cccccc;

}

/* Séparateur de colonne */
.separator_right {
    border-right: 2px solid #ffffff;
}

/* Lignes impaires pour un effet \"zébré\" */
.table_coeff tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

/* Lignes paires */
.table_coeff tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Cellules du tableau */
.table_coeff td {
    padding: 10px;
    border: 1px solid #cccccc;
    color: #333333;
}

/* Colonnes avec valeurs en gras */
.gras_dates, .gras_dates2 {
    font-weight: bold;
    color: #0074db; /* Bleu corporate */
}

/* Effet au survol */
.table_coeff tbody tr:hover {
    background-color: #d9e4f5;
    transition: background-color 0.3s ease-in-out;
}
