/* only for demo */

/* body{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: darkcyan;
} */



/* only for demo */


.chat-bubble{
    overflow: auto;
    border-radius: 5px;
    background-color: white;
    color: black;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}


 /* para que sea como boton */
.chat-bubble{
    border-radius: 50px;
    width: 60px;
}

#chat-bubble-header-txt{
    display: none;
}

.chat-bubble-header{
    background-color: rgb(17, 192, 17);
    color: white;
    padding: 14px 10px 10px 10px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.chat-bubble-content{
    margin: 10px;
    display: none;
}

.chat-bubble-btn{
    background-color: rgb(17, 192, 17);
}


/* mejoras visuales */

/* Chat Bubble Container */
.chat-bubble {
    background-color: #bfdbd8;
    color: #404040;
    position: fixed;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
    opacity: 0.95;
}

/* Header Styling */
.chat-bubble-header {
    background-color: #128C7E;

    text-align: center;
}

.chat-bubble-header h4 {
    margin: 0;
    font-weight: bold;
}

.chat-bubble-header i {
    color: #fff;
}

/* Form Content Styling */
.chat-bubble-content {
    padding: 15px;
}

.bubble-chat-form .form-label {
    color: #404040;
    font-weight: 600;
}

.bubble-chat-form .form-control {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.bubble-chat-form .form-control:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
}

/* Button Styling */
.chat-bubble-btn {
    background-color: #075E54;
    color: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
}

.chat-bubble-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Floating Effect */
.chat-bubble:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Small Animations */
@keyframes bubble-pop {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.chat-bubble {
    animation: bubble-pop 0.3s ease;
}
