.reporting-table {
    width: 100%;
    border-collapse: separate;
    text-align: left;
    background-color: white;
    display: table;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.reporting-table th,
.reporting-table td {
    border: 1px solid #393C3F;
    font-size: 14px;
    white-space: nowrap;
    padding: 1px;
}

.reporting-table th, .reporting-table .element-col {
    background-color: #393C3F;
    color: #FFFFFF;
}

.reporting-table tr th:not(:first-child) {
    vertical-align: middle;
    text-align: center;
}

.reporting-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.reporting-table .cel {
    min-width: 150px;
    padding: 0.5em;
}

.reporting-table .element-col {
    width: 10%;

}

.progress {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.progress-bar.light-background {
    color: black;
    text-shadow: none;
}

/* Couleurs pour différents états de progression */
.progress-bar[data-color="red"] {
    background: linear-gradient(to right, #ff6161, #ff3030);
}

.progress-bar[data-color="green"] {
    background: linear-gradient(to right, #2ECC40, #28A745);
}

.progress-bar[data-color="orange"] {
    background: linear-gradient(to right, #ff7f00, #e65100);
}

.progress-bar[data-color="grey"] {
    background: transparent;
    color: black;
    text-shadow: none;
}

.progress-container {
    position: relative;
}

.progress-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    display: none;
}

.progress-bar[data-color="grey"] + .progress-label {
    display: block;
}

.progress-bar[data-color="red"]:after, .progress-bar[data-color="green"]:after, .progress-bar[data-color="orange"]:after, .progress-bar[data-color="grey"] + .progress-label:after {
    content: "%";
}

.info-icon-regles {
    cursor: pointer;
}



