/* Style pour le widget BotMan */
.botman-container {
    z-index: 9999;
}

/* Bouton de chat */
.botman-widget-button {
    background-color: #00cba9 !important;
    box-shadow: 0 2px 10px rgba(0, 203, 169, 0.4) !important;
    transition: all 0.2s ease !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
}

.botman-widget-button:hover {
    background-color: #00b89d !important;
    transform: scale(1.05);
}

/* Container principal du widget */
.botman-widget {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    width: 400px !important;
    max-width: 90vw !important;
}

/* En-tête du widget */
.botman-widget-header {
    background-color: #00cba9 !important;
    padding: 15px !important;
    border-bottom: none !important;
}

.botman-widget-title {
    font-weight: 600 !important;
    font-size: 18px !important;
}

.botman-widget-close {
    font-size: 20px !important;
    color: white !important;
    opacity: 0.8 !important;
}

.botman-widget-close:hover {
    opacity: 1 !important;
}

/* Conteneur de l'iframe */
.botman-widget-content {
    border: none !important;
    height: 500px !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Style de l'iframe elle-même */
.botman-widget iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    overflow: hidden !important;
}