
#free-harold-panel {
    position: fixed;
    top: 20%;
    right: 0;
    width: 320px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-left: 5px solid #ff0000;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: right 0.3s ease;
    animation: borderPulse 2s infinite;
    color: white;
    font-family: Arial, sans-serif;
}

#free-harold-panel.minimized {
    right: -290px;
}

#free-harold-toggle {
    position: absolute;
    top: 10px;
    left: -30px;
    background-color: #ff0000;
    color: white;
    padding: 5px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px 0 0 3px;
}

#free-harold-panel .overlay {
    background-color: rgba(0,0,0,0.2);
    padding: 15px;
    height: 100%;
    box-sizing: border-box;
}

#free-harold-panel h2 {
    margin: 0 0 10px;
    font-size: 20px;
    text-align: center;
}

#free-harold-panel p {
    text-align: center;
    margin: 5px 0;
     bottom: 15px; 
}


#countdown {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
    position: absolute;       /* Permet de le placer par rapport au panneau */
    bottom: 20px;             /* Distance par rapport à la bordure inférieure */
    left: 0;
    width: 100%;              /* Pour occuper toute la largeur */
    padding: 0 10px;          /* Optionnel : espace horizontal */
}


#countdown div {
    text-align: center;
}

#countdown span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

#countdown label {
    font-size: 12px;
}

.message {
    font-style: italic;
    font-size: 14px;
    margin-top: 10px;
}


#Title {
    display: block;           /* Assure que le texte occupe toute la largeur */
    font-size: 16px;          /* Taille du texte */
    font-weight: bold;        /* Met en évidence le texte */
    text-align: center;       /* Centre le texte horizontalement */
    margin-bottom: 10px;      /* Espace entre le texte et le compteur */
    color: #ffffff;           /* Couleur du texte (blanc pour contraste) */
}


@keyframes borderPulse {
    0% { border-color: #ff0000; }
    50% { border-color: #ffffff; }
    100% { border-color: #ff0000; }
}