/* Full chat panel - initially hidden */
.floating-chat {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    z-index: 9999;
    display: none;
    flex-direction: column;
    background: white;
}
.floating-chat .headerai {
    background: #4B2E43;;
    color: white;
    padding: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.floating-chat .messages {
    list-style: none;
    margin: 0;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    flex-grow: 1;
}
.floating-chat .messages li {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 5px;
}
.floating-chat .messages .other {
    background: #e0e0e0;
    text-align: left;
}
.floating-chat .messages .self {
    background: #f7dada;
    text-align: right;
}
.floating-chat .footer {
    background: #fafafa;
    padding: 10px;
    display: flex;
    border-top: 1px solid #ddd;
}
.floating-chat textarea {
    flex: 1;
    resize: none;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial;
    font-size: 14px;
}
.floating-chat button {
    margin-left: 10px;
    padding: 8px 15px;
    border: none;
    background: #ffb727;;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.chat-widget {
    position: fixed;
    bottom: 10px;
    right: 70px;
    width: 100px;
    height: 100px;
    z-index: 10000;
}

.curved-text {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100px;
    height: 110px;
    font-size: 24px;
    font-weight: bold;
    fill: #00a86b;
    pointer-events: none;
}

.chat-icon {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #ffb727;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-icon:hover {
    background: #f3a200;
}
