html {
    background-color: black;
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--new_jaune);
    width: 1280px;
    height: 720px;
    margin: calc(50vh - 360px) calc(50vw - 640px);
    position: fixed;
    font-family: Font1;
    color: white;
    overflow: hidden;
}

#GameLogo img {
    height: 100px;
}

#ProgressBar {
    width: 192px;
    height: 8px;
    border: 1px solid white;
}

#Progressing {
    height: 8px;
    background-color: white;
    float: left !important;
}

.btn {
    cursor: pointer;
    display: inline-block;
    background-color: white;
    color: var(--vert1);
    padding: 8px;
    width: 192px;
    margin: 8px 0;
    font-weight: bold;
}

input {
    padding: 8px;
    font-family: Font1;
    font-weight: bold;
    text-align: center;
    width: 210px;
}

#SubPageHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    pointer-events: none;
}

#SubPageHeader .sph-logo img {
    height: 48px;
    pointer-events: auto;
}

#SubPageHeader .sph-user {
    font-family: Font2;
    font-size: 22px;
    color: white;
    text-align: right;
    line-height: 90%;
    text-shadow: 0px 0px 4px black;
    pointer-events: auto;
}

#SubPageHeader .sph-user #SoldePieces {
    color: var(--new_jaune);
}

#Menu {
    display: flex;
    justify-content: space-around;
}

.menu--item {
    height: 256px;
    width: 256px;
    box-shadow: 0px 0px 4px black;
    text-align: left;
    padding: 4px;
    font-family: Font2 !important;
    text-transform: uppercase;
    color: black;
    font-size: 60px;
    line-height: 80%;
    cursor: pointer;
    transition: transform 0.5s;
}

    .menu--item:hover {
        transform: scale(1.05);
    }

    .menu--item.un {
        background: url(/images/item_1.jpg);
    }

    .menu--item.deux {
        background: url(/images/item_2.jpg);
    }

    .menu--item.trois {
        background: url(/images/item_3.jpg);
    }

    .menu--item.quatre {
        background: url(/images/item_4.jpg);
    }

    .menu--item.cinq {
        background: url(/images/item_5.jpg);
    }

    .menu--item.six {
        background: url(/images/item_6.jpg);
    }

#MessageDefilant {
    line-height: 48px;
    height: 48px;
    min-width: calc(100% - 16px);
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: black;
    color: white;
    font-size: 36px;
    font-weight: bold;
    padding: 0 8px;
    text-align: left;
}

#Message {
    position: absolute;
    left: 1280px;
    max-height: 48px;
    width: fit-content;
    overflow-wrap: normal !important;
}

h2 {
    font-family: Font2;
    font-size: 96px;
    text-align: center;
}

#Texte {
    width: 100%;
    height: 96px;
    font-size: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 4px black;
    text-align: center;
}

.joueur {
    width: 96px;
    height: 96px;
    background: url(/images/joueurs/0.jpg);
    border: 3px solid black;
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 0px 4px black;
}

#Ballon {
    width: 48px;
    height: 48px;
    position: absolute;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 0px 4px black;
    border-radius: 50%;
}

.fleche, .button_bottom {
    cursor: pointer;
}

#RBS {
    position: absolute;
    display: flex;
    width: 640px;
    bottom: 0;
    left: 320px;
    justify-content: space-around;
    align-items: baseline;
    text-align: center;
    font-weight: bold;
}

#RBS div {
    text-align: center;
    position: fixed;
    color: var(--noir);
    width: 256px;
}

#RBS .stade {
    top: 205px;
}

#RBS .ballon {
    top: 400px;
}

#RBS #ImgBallon {
    margin-bottom: 32px;
}

.carre_equipes {
    height: 440px;
    width: 440px;
    position: absolute;
    bottom: 34px;
    left: 420px;
    color: black;
    background-color: var(--blanc);
    font-weight: bold;
    text-shadow: 0px 0px 1px black;
    text-align: center;
    cursor: pointer;
}

.carre_joueurs {
    left: 358px !important;
}

/* Carte de survol joueur — cohérente avec la carte équipe */
.joueurs_eqp2 {
    display: flex;
    width: 200px;
    position: absolute;
    left: 18px;
    border: none;
    border-top: 10px solid var(--new_jaune);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    z-index: 999;
    flex-direction: column;
    bottom: 96px;
    overflow: hidden;
    background-color: var(--blanc);
}

.joueurs_eqp2.jj.right {
    left: auto !important;
    right: 18px !important;
}

.joueurs_eqp2.jj {
    bottom: 344px !important;
}

    .joueurs_eqp2 .resume--top {
        line-height: initial !important;
        text-align: center;
        height: auto;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 14px 8px 10px;
        font-family: Font2;
        font-size: 20px;
        color: var(--noir);
        background-color: var(--blanc);
        flex-direction: column;
    }

    .joueurs_eqp2 .resume--top img {
        border-radius: 50%;
        border: 3px solid var(--new_jaune);
        width: 72px !important;
        height: 72px !important;
        object-fit: cover;
    }

    .joueurs_eqp2 .resume--joueur {
        height: 32px;
        display: flex;
        justify-content: center;
        background-color: var(--blanc);
        color: var(--noir);
        line-height: 32px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        font-family: Font2;
        font-size: 14px;
    }

        .joueurs_eqp2 .resume--joueur .avatar {
            height: 32px;
            width: 32px;
            flex-shrink: 0;
        }

        .joueurs_eqp2 .resume--joueur .nom {
            flex: 1;
            text-align: center;
            padding: 0 8px;
        }

        .joueurs_eqp2 .resume--joueur .rg {
            height: 32px;
            width: 32px;
            flex-shrink: 0;
            visibility: hidden;
        }

input[type="radio"] {
    width: 32px;
}

form {
    font-weight: bold;
}

#FormEquipe {
    text-align: center;
    position: absolute;
    bottom: 150px;
    left: 100px;
}

td.active {
    background-color: black;
    opacity: 0.33;
}

/* ---------- v 2.0 v ---------- */

#LoadingBallon {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: spin 2s cubic-bezier(0, 0, 0, 0.97) infinite;;
    -moz-animation: spin 2s cubic-bezier(0, 0, 0, 0.97) infinite;;
    animation: spin 2s cubic-bezier(0, 0, 0, 0.97) infinite;;
}

#LoadingTexte {
    width: 100%;
    height: 96px;
    font-size: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 4px black;
    text-align: center;
}

#MenuInterface {
    width: 820px;
    height: 552px;
    margin: 84px;
}

#MenuInterface .MainTop {
    display: flex;
    justify-content: space-between;
}

#MenuInterface .MainBottom {
    position: absolute;
    bottom: 84px;
}

#MenuInterface .MainTop .MainTopRight {
    font-family: Font2;
    font-size: 24px;
    color: white;
    text-align: right;
    line-height: 90%;
}

#MenuInterface .MainTop .MainTopRight #Solde {
    color: var(--new_jaune);
}

.case {
    background-color: var(--blanc);
    cursor: pointer;
    transition: transform 0.5s;
    position: absolute;
    font-family: Font2;
    color: var(--noir);
    font-size: 36px;
    line-height: 90%;
}

.case span {
    padding-left: 6px;
    border-left: 5px solid var(--new_jaune);top: 12px;
    position: relative;
}

.case:hover {
    transform: scale(1.05);
}

.case.case_1x1 {
    width: 200px;
    height: 200px;
}

.case.case_2x1 {
    width: 408px;
    height: 200px;
}

.case.case_1x2 {
    width: 200px;
    height: 408px;
}

#CaseNouveauMatch {
    left: 0px;
    bottom: 0px;
    background: url(/images/item_1.jpg);
}

#CaseJoueurs {
    left: 208px;
    bottom: 208px;
    background: url(/images/item_4.jpg);
    background-size: cover;
}

#CaseEquipes {
    left: 208px;
    bottom: 0px;
    background: url(/images/item_5.jpg);
    background-size: cover;
}

#CaseBoutique {
    left: 416px;
    bottom: 208px;
    background: url(/images/item_3.jpg);
    background-size: cover;
}

#CaseTrax {
    left: 624px;
    bottom: 208px;
    background: url(/images/item_6.jpg);
    background-size: cover;
}

#CaseLogout {
    left: 416px;
    bottom: 0px;
    background: url(/images/item_2.jpg);
    background-size: cover;
}

#CasePhrases {
    left: 416px;
    bottom: 0px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 100%);
}

.couleur_equipe {
    width: 32px;
    border-radius: 50%;
    height: 32px;
}

#AffichageScore {
    width: 360px;
    height: 32px;
    line-height: 32px;
    box-shadow: 0px 0px 4px black;
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 56px;
    left: 81px;
    font-size: 22px;
    font-family: Font1;
    border-radius: 16px;
}

#AffichageTemps {
    width: 102px;
    line-height: 32px;
    background-color: var(--rouge);
    font-weight: bold;
    color: var(--blanc);
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

#AffichageTemps span.temps {
    text-align: right;
}

#AffichageScore .score_equipe {
    width: 32px;
    background-color: var(--noir);
    color: white;
    font-weight: bold;
    text-align: center;
}

#AffichageScore .nom_equipe {
    width: 139px;
    background-color: var(--blanc);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--noir);
    text-align: center;
    display: flex;
    flex-direction: row;
}

#NomEquipe1 {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

#NomEquipe2 {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    justify-content: flex-end;
}

#CouleurEquipe1 {
    margin-right: 22px;
}

#CouleurEquipe2 {
    margin-left: 22px;
}

#TV {
    width: 1280px;
    height: 720px;
    position: absolute;
}

.equipe_ {
    width: 290px;
    height: 540px;
    background-color: var(--blanc);
    color: var(--noir);
    font-family: Font2;
    position: absolute;
    top: 42px;
}

.equipe_.stade-ballon {    
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 228px;
}

#ES1 .equipe_ {
    left: 120px;
}

#ES2 .equipe_ {
    right: 120px;
}

/* Carte équipe positionnée pour le survol (page Mes équipes) */
.equipe_preview {
    width: 290px;
    background-color: var(--blanc);
    color: var(--noir);
    font-family: Font2;
    position: absolute;
    left: 18px;
    bottom: 96px;
    z-index: 999;
    border-top: 10px solid transparent;
}

.equipe_ .nom_equipe_choix,
.equipe_preview .nom_equipe_choix {
    font-size: 36px;
    text-align: center;
    width: 290px;
    position: relative;
    top: 16px;
}

.equipe_ .nom_court_equipe_choix,
.equipe_preview .nom_court_equipe_choix {
    font-size: 160px;
    text-align: center;
    width: 290px;
    position: relative;
    line-height: 100%;
}

.equipe_etoiles_stats {
    height: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: 20px;
}

.images_joueurs_sel {
    width: 246px;
    height: 246px;
    display: flex;
    margin: 20px;
    flex-wrap: wrap;
}

.image_joueur_sel {
    width: 82px;
    height: 82px;
}

.fleche {
    width: 50px;
    height: 56px;
    position: absolute;
    top: 300px;
}

.fleche.droite {
    background-image: url(/images/icones/fleche_droite.png);
}

.fleche.gauche {
    background-image: url(/images/icones/fleche_gauche.png);
}

#ES1 .fleche.gauche {
    left: 48px;
}

#ES1 .fleche.droite {
    left: 432px;
}

#ES2 .fleche.droite {
    right: 48px;
}

#ES2 .fleche.gauche {
    right: 432px;
}

.button_bottom {
    font-size: 64px;
    font-family: Font2;
    color: var(--noir);
    background-color: var(--blanc);
    display: block;
    text-align: left;
    padding: 8px;
    width: 256px;
    position: absolute;
    bottom: 16px;
    text-transform: uppercase;
    border-left: 8px solid var(--new_jaune);
    line-height: 60px;
}

.button_bottom.left {
    left: 16px;
}

.button_bottom.right {
    right: 16px;
}

#NouveauMatchVS {
    font-size: 36px;
    font-family: Font2;
    color: var(--new_jaune);
    width: 256px;
    margin: auto;
    height: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#VS {
    font-size: 128px;
    position: relative;
    bottom: 64px;
}

#ResumeEquipes {
    display: flex;
    width: 900px;
    margin: 112px auto;
    box-shadow: 0px 0px 4px black;
    z-index: 999;
    background-color: var(--blanc);
}

    #ResumeEquipes .resume--top {
        width: calc(100% - 16px);
        display: flex;
        justify-content: space-between;
        padding: 4px;
        font-size: 24px;
        color: var(--noir);
        background-color: var(--blanc);
        font-family: Font2;
    }

    #ResumeTop1 {
        border-left-width: 8px;
        border-left-style: solid;
    }

    #ResumeTop2 {
        border-right-width: 8px;
        border-right-style: solid;
    }

    #ResumeEquipes #NomEquipe1Complet, #ResumeEquipes #NomEquipe2Complet {
        font-family: Font2;
        color: var(--noir);
        font-size: 36px;
        line-height: 32px;
    }

    #ResumeEquipes .resume--joueur {
        height: 36px;
        display: flex;
        justify-content: space-between;
        background-color: var(--blanc);
        color: var(--noir);
        line-height: 36px;
    }

    #ResumeEquipes .resume--joueur .avatar {
        height: 36px;
        width: 36px;
    }

    #ResumeEquipes .resume--joueur .nom {
        width: 294px;
        text-align: left;
        padding: 0 8px;
    }

        #ResumeEquipes .resume--joueur .rg {
            height: 36px;
            width: 36px;
            visibility: hidden;
        }

    #ScoreEquipe1Complet {
        margin-right: 8px;
        font-family: Font2;
        color: var(--noir);
        font-size: 36px;
        line-height: 32px;
    }

    #ScoreEquipe1Complet.cote {
        margin-right: 64px;
    }

    #ScoreEquipe2Complet {
        margin-left: 8px;
        font-family: Font2;
        color: var(--noir);
        font-size: 36px;
        line-height: 32px;
    }

    #ScoreEquipe2Complet.cote {
        margin-left: 64px;
    }

    #ScoreEquipeNComplet {
        margin-left: 0;
        margin-top: 4px;
        font-family: Font2;
        color: var(--noir);
        font-size: 36px;
        line-height: 32px;
    }

    #ResumeTiret {
        font-family: Font2;
        color: var(--noir);
        position: absolute;
        margin: auto;
        left: 635px;
        top: 116px;
        font-size: 36px;
        line-height: 32px;
    }

    .resume--bottom {
        padding: 0 16px 16px 16px;
        color: var(--noir);
        font-family: 'Font1';
        font-size: 28px;
    }

    #LibelleArbitre {
        padding-bottom: 8px;
    }

    #LibelleArbitre .nom {
        text-align: right !important;
    }

    #LibelleArbitre .rg {
        display: none;
    }

    .resume_1, .resume_2 {
        width: 100%;
    }

    .resume_2 .resume--joueur {
        flex-direction: row-reverse;
    }

    .resume_2 .resume--joueur .nom {
        text-align: right !important;
    }

    .resume--joueur.arbitre, #RA {
        position: relative;
        right: 32px;
        padding-bottom: 8px;
        flex-direction: row !important;
    }

    .resume--joueur.arbitre .nom, #RA .nom {
        text-align: left !important;
    }

    .nom_nomarge {
        padding-left: 0 !important;
        font-size: 24px;
    }

#ClavierNum {
    width: 410px;
    height: 552px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    position: absolute;
    top: 84px;
    right: 84px;
}

#ClavierNum .clavier_num_touche {
    width: 130px;
    height: 130px;
    background-color: var(--blanc);
    color: var(--noir);
    line-height: 130px;
    text-align: center;
    font-family: Font2;
    font-size: 60px;
    cursor: pointer;
}

#ClavierNum .clavier_abc_touche {
    width: 64px;
    height: 72px;
    background-color: var(--blanc);
    color: var(--noir);
    line-height: 64px;
    text-align: center;
    font-family: 'Font1';
    font-size: 36px;
    cursor: pointer;
    font-weight: bold;
}

.login_title {
    font-size: 28px;
    font-family: Font2;
    text-transform: uppercase;
}

.login_title.erreur {
    display: none;
    color: var(--rouge);
}

.edit_pwd {
    background-color: #33333333;
    width: 600px;
    height: 88px;
    line-height: 88px;
    color: white;
    font-family: Font2;
    font-size: 36px;
    text-align: center;
}

.edit_txt {
    background-color: #33333333;
    width: 600px;
    height: 88px;
    line-height: 88px;
    color: white;
    font-family: 'Font1';
    font-size: 36px;
    text-align: center;
}

.edit--curseur {
    -webkit-animation: blink 2s linear infinite;
    -moz-animation: blink 2s linear infinite;
    animation: blink 2s linear infinite;
    transition: opacity 0.5s;
}

.btn_inscription {
    background-color: var(--blanc);
    width: 600px;
    height: 88px;
    line-height: 88px;
    color: var(--noir);
    font-family: Font2;
    font-size: 48px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 16px;
}

#GoRegister {
    width: 341px !important;
}

#TexteCode {
    font-family: Font2;
    font-size: 48px;
}

#TexteCodeBig {
    font-family: Font2;
    font-size: 96px;
}

#TexteCodeContainer {
    margin-top: 256px;
}

/* ---------- Phrase editor ---------- */

#PhraseEditorRoot {
    position: absolute;
    top: 56px;
    left: 12px;
    width: 1256px;
    height: 560px;
    display: flex;
    gap: 12px;
    color: var(--noir);
}

#PhraseEditorRoot .pe-panel {
    background-color: #ececec;
    border: 3px solid #111;
    box-shadow: 0px 0px 6px #00000099;
    padding: 8px;
    box-sizing: border-box;
}

#PELeft {
    width: 446px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

#PERight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.pe-toolbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.pe-toolbar button,
.pe-position-tools button {
    height: 32px;
    border: 0;
    background-color: #202020;
    color: #f4f4f4;
    font-family: Font1;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.pe-toolbar button:hover,
.pe-position-tools button:hover {
    background-color: #444;
}

#PEStatus {
    min-height: 24px;
    line-height: 24px;
    font-size: 16px;
    font-weight: bold;
    padding: 0 8px;
    border-left: 5px solid #2d7a2d;
    background-color: #f7f7f7;
}

#PEStatus.err {
    border-left-color: #a30000;
}

.pe-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pe-block label,
.pe-preview-grid label {
    color: #111;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
}

#PEPhraseList {
    width: 100%;
    height: 118px;
    font-size: 14px;
    font-family: Font1;
}

.pe-grid {
    display: grid;
    grid-template-columns: 144px 1fr;
    gap: 4px 8px;
}

.pe-grid input,
.pe-grid select,
.pe-preview-grid input,
.pe-preview-grid select,
.pe-block textarea,
.pe-position-tools select,
.pe-actor-name,
.pe-actor-sex {
    width: 100%;
    height: 30px;
    padding: 4px 6px;
    font-family: Font1;
    font-size: 14px;
    box-sizing: border-box;
    text-align: left;
}

.pe-grid label {
    align-self: center;
}

.pe-block textarea {
    height: 88px;
    resize: vertical;
}

.pe-help {
    font-size: 13px;
    line-height: 16px;
    color: #222;
    background-color: #f8f8f8;
    padding: 6px;
    border-left: 4px solid #999;
}

.pe-preview-controls {
    background-color: #f8f8f8;
    padding: 6px;
    border: 1px solid #cfcfcf;
}

.pe-preview-grid {
    display: grid;
    grid-template-columns: 150px 1fr 150px 1fr;
    gap: 4px 8px;
    align-items: center;
}

#PEPreviewField {
    position: relative;
    aspect-ratio: 16 / 9;
    height: 414px;
    margin: 0 auto;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid #111;
    overflow: hidden;
    user-select: none;
}

#PEPreviewField::before {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0px 0px 50px #00000066;
    pointer-events: none;
}

#PEPreviewMarkers {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.pe-marker {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 5px #000;
    touch-action: none;
    box-sizing: border-box;
}

.pe-marker.pe-end {
    border-style: dashed;
    opacity: 0.85;
}

.pe-marker.active {
    transform: scale(1.16);
}

.pe-tone-x {
    background-color: #b50000;
}

.pe-tone-y {
    background-color: #005ec9;
}

.pe-tone-a {
    background-color: #303030;
}

.pe-tone-b {
    background-color: #dc8a00;
}

.pe-tone-n {
    background-color: #5e5e5e;
}

#PEPreviewText {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 55px;
    box-sizing: border-box;
    z-index: 3;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    text-shadow: 0px 0px 5px #000;
    padding: 0 10px;
    background: linear-gradient(to top, #000000cc 0%, #00000055 55%, #00000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-position-tools {
    display: grid;
    grid-template-columns: 110px 1fr 170px 170px 110px 1fr 130px;
    gap: 6px;
    align-items: center;
}

#PECoordInfo {
    grid-column: 1 / -1;
    background-color: #f8f8f8;
    border: 1px solid #d0d0d0;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
}

.pe-block.actors {
    flex: 1;
    min-height: 128px;
}

#PEActorList {
    border: 1px solid #cfcfcf;
    background-color: #f7f7f7;
    padding: 6px;
    overflow-y: auto;
    flex: 1;
}

.pe-actor-row {
    display: grid;
    grid-template-columns: 48px 1fr 64px;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.pe-actor-token {
    text-align: center;
    font-weight: bold;
    background-color: #1f1f1f;
    color: #fff;
    height: 30px;
    line-height: 30px;
}

.pe-empty {
    color: #666;
    font-size: 14px;
}

#TexteMatch2 {
    margin-top: -654px;
}