/* Contenedor flotante */
#cbd-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
}

/* Botón flotante */
#cbd-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
background: url('https://crossborderdynamics.com/wp-content/uploads/2025/07/ef67b5_848f33aaec6448cd986614006a645e0dmv2.gif') no-repeat center center;
     background-size: 110px 110px; /* Ajusta el tamaño de la imagen */
    width: 30px; /* Ajusta el ancho del botón */
	height: 110px; /* Ajusta la altura del botón */
    border-radius: 30%;
	padding: 20px 1px;
    color: #fffefc;
    border: none;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: background .3s ease;
     white-space: nowrap; /* Evita que el texto se envuelva */	
}


#cbd-toggle:hover {
    
}

/* Caja del chat */
#cbd-body {
    width: 320px;
    max-width: 90vw;
    height: 450px;
    max-height: 70vh;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    overflow: hidden;
}

/* Mensajes */
#cbd-messages {
    flex: 1 1 auto;
    padding: 10px;
    overflow-y: auto;
    line-height: 1.4;
}
#cbd-messages .user {
    text-align: right;
    color: #005f73;
    margin: 6px 0;
}
#cbd-messages .bot {
    text-align: left;
    color: #333333;
    margin: 6px 0;
}

#cbd-messages .bot p {
    margin: 0 0 0.6em;
}
#cbd-messages .bot a {
    color: #0a9396;
    text-decoration: underline;
}
#cbd-messages .bot strong {
    font-weight: 700;
}
#cbd-messages .bot em {
    font-style: italic;
}

/* Input + botón */
#cbd-input {
    flex: 1 1 auto;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
}
#cbd-send {
    padding: 0 16px;
    background: #005f73;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background .3s ease;
}
#cbd-send:hover {
    background: #0a9396;
}

/* Formulario inferior */
#cbd-body::after {
    content: "";
    display: flex;
    border-top: 1px solid #eeeeee;
    background: #fafafa;
}

