        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            padding: 20px;
        }
        .container, .full-width {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .container {
            display: flex;
            justify-content: space-between;
        }
        .column {
            width: 48%;
        }
        input[type=text], input[type=password], input[type=number], select, button, #copyIdCheck {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            display: inline-block;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }
        button:hover {
            background-color: #45a049;
        }
        #checkStatusBtn {
            background-color: #008CBA;
        }
        #checkStatusBtn:hover {
            background-color: #007B8A;
        }




.help-button {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #007bff; /* Bleu */
    color: white; /* Écriture blanche */
    border-radius: 50%;
    cursor: pointer;
    margin-right: 10px; /* Ajustement pour aligner à gauche de l'input */
    font-size: 14px; /* Ajustez selon besoin */
    font-family: Arial, sans-serif; /* Ajustez selon besoin */
    user-select: none; /* Empêche la sélection du '?' */
}

.tooltip {
    visibility: hidden;
    width: auto;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.help-button:hover .tooltip {
    visibility: visible;
}


/* Pour aligner le bouton d'aide à gauche de l'input sur la même ligne */
.form-field {
    display: flex;
    align-items: center;
}

input[type="text"], input[type="password"], input[type="number"], select {
    flex-grow: 1; /* Permet aux champs de remplir l'espace restant */
}



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

.input-group input {
    flex-grow: 1;
    margin-right: 10px; /* Ajustez l'espace entre l'input et le bouton d'aide */
}





.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress {
    background-color: #e0e0e0;
    width: 60%;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: #007bff;
    height: 100%;
    border-radius: 10px;
}
