.elementor-6118 .elementor-element.elementor-element-20e70be > .elementor-background-overlay{background-color:transparent;background-image:linear-gradient(180deg, #F80909 0%, #0C51EB 100%);opacity:0.5;}/* Start custom CSS for html, class: .elementor-element-9ad247a *//* ✅ Ensures the Chatbox has Proper Layout */
#centerChatbox {
    max-width: 700px;
    width: 100%;
    margin: 20px auto;
    background: #ffd4e5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 600px;
}

/* ✅ Chatbox Header */
.chatbox-header {
    background: #ff69b4;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

/* ✅ Chat Log - Restored Blue-Red Gradient */
#center.chatlog {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 300px;
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    margin-bottom: 10px;
    background: linear-gradient(135deg, pink, blue, red);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ✅ Chat Message Styling */
.chat-message {
    max-width: 80%;
    padding: 10px;
    border-radius: 15px;
    margin: 5px;
    font-size: 16px;
    color: white;
    word-wrap: break-word;
}

/* ✅ User Message */
.user-message {
    background: #d147a3;
    align-self: flex-end;
}

/* ✅ Agent Messages Based on Gender */
.agent-message.female {
    background: pink;
    color: white;
}

.agent-message.male {
    background: blue;
    color: white;
}

/* ✅ Input Section */
.input-section {
    display: flex;
    width: 100%;
    padding: 12px;
    background: #ffd4e5;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}

/* ✅ Full-Width Input Field */
#center.input.userMessage {
    flex-grow: 1;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #ff69b4;
    outline: none;
    background-color: white;
    width: 100%;
}

/* ✅ Fixed Pink Send Button */
#center.btn.sendMessage {
    background: #ff69b4;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    min-width: 120px;
    margin-left: 10px;
}

/* ✅ Fixes Footer Background */
.chatbox-footer {
    width: 100%;
    background: #ff69b4;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 10px;
}

/* ✅ Fix Image Carousel */
.image-carousel {
    width: 100%;
    max-width: 700px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.3);
}

/* ✅ Prevents images from stacking */
.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}/* End custom CSS */