/* Style de la bulle en bas à droite */
#mcp-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#mcp-bubble img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.modal-title{
    color: #42474c;
    /*font-family: 'Poppins';*/
    font-weight: 700;
}

/* Style de la popup */
#mcp-popup {
    display: none; /* Cachée par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#mcp-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
}

#mcp-popup-content h2 {
    margin-top: 0;
}

#mcp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Formulaire */
#mcp-contact-form textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 15px;
    padding: 10px;
    resize: none;
}

#mcp-contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

#online{
    width: 16px;
    height: 16px;
    background-color: #03c03c;
    position: absolute;
    border-radius: 100%;
    bottom: 0;
    right: 5px;
    border: 1px solid #fff;
}

@mcp-contact-form button:hover {
    background-color: #005f8d;
}
