.marg2 {
    margin-bottom: 2rem;
}

.center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.font8 {

    font-size: 0.8rem;
}

.bold9 {
    font-weight: bold;
    font-size: 0.9rem;
}

.bold22 {
    font-size: 2.2rem;
    font-weight: bold;
}

.bold18 {
    font-size: 1.8rem;
    font-weight: bold;
}

.bold14 {
    font-size: 1.4rem;
    font-weight: bold;
}

.flex-center {
    display: flex;
    align-items: center;
    gap: 10px
}

.colonne {
    display: flex;
    flex-direction: column;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.space{
    display: flex;
    justify-content: space-between;
}
.no-wrap {
    white-space: nowrap;
}

.wrap {
    flex-wrap: wrap;
}

.souligne {
    border-bottom: 2px solid var(--border-color);
}

.pad10 {
    padding: 10px;
}

.pad15 {
    padding: 15px;
}

.pad12-15 {
    padding: 12px 15px;
}

.right {
    text-align: right;
}

.gap15 {
    gap: 15px;
}

.gap20 {
    gap: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.mb15 {
    margin-bottom: 15px;
}

.mb4 {
    margin-bottom: 4px;
}

.mt5 {
    margin-top: 5px;
}

.m4 {
    margin: 4px;
}

.m10000 {
    margin: 10px 0 0 0;
}
.cadre-bleu {
    background: linear-gradient(135deg, #1d39c4, #2f54eb);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.vert {
    color: #52c41a;
}

.rouge {
    color: #ff4d4f;
}

.bleu {
    color: #2f54eb;
}

.border-vert {
    border-left: 5px solid #52c41a;
}

.border-rouge {
    border-left: 5px solid #ff4d4f;
}

.border-bottom {
    border-bottom: 1px solid #f0f0f0;
}

.gris {
    color: #555;
}

.cadre-bleu h4 {
    margin: 0;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    opacity: 0.8;
}

.noDisplay {
    display: none;
}

.overflow {
    overflow-x: auto;
}

.absence {
    padding: 2rem;
    text-align: center;
    color: #888;
    font-style: italic;
}

.max600 {
    max-width: 600px;
    margin: auto;
}

h2 {
    margin: 5px 0 0 0;
}

h4 {
    margin: 0;
    color: #8c8c8c;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.deco {
    text-decoration: none;
}

.curseur {
    transform: scale(1.2);
    cursor: pointer;
}

.barre {
    background: #f5f5f5;
    border-radius: 4px;
    height: 6px;
    width: 100%;
    overflow: hidden;
}

.w80 {
    width: 80%;
}