.angie-clinic-chat-container-7ef209b0 {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Aligned to bottom left as requested */
    z-index: 999999;
    font-family: Arial, sans-serif;
}

/* Trigger Button */
.angie-chat-trigger-btn-7ef209b0 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4054B2, #1368AA);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(64, 84, 178, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angie-chat-trigger-btn-7ef209b0:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(64, 84, 178, 0.6);
}

.angie-chat-trigger-btn-7ef209b0 svg {
    width: 30px;
    height: 30px;
}

.angie-chat-badge-7ef209b0 {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b3b;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: bounce-7ef209b0 2s infinite;
}

@keyframes bounce-7ef209b0 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* Chat Window */
.angie-chat-window-7ef209b0 {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 340px;
    height: 480px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom left;
    animation: chat-pop-up-7ef209b0 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes chat-pop-up-7ef209b0 {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

.angie-chat-header-7ef209b0 {
    background: linear-gradient(135deg, #4054B2, #1368AA);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.angie-chat-title-7ef209b0 {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.angie-chat-avatar-7ef209b0 {
    margin-right: 10px;
    font-size: 22px;
    background: rgba(255,255,255,0.2);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.angie-chat-close-7ef209b0 {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.angie-chat-close-7ef209b0:hover {
    opacity: 1;
}

.angie-chat-body-7ef209b0 {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.angie-chat-message-7ef209b0 {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.angie-chat-bot-7ef209b0 {
    background-color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: #333;
}

.angie-chat-user-7ef209b0 {
    background-color: #4054B2;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.angie-chat-footer-7ef209b0 {
    padding: 15px;
    background: white;
    border-top: 1px solid #eaeaea;
    display: flex;
    gap: 10px;
    align-items: center;
}

.angie-chat-footer-7ef209b0 input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 24px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #f9f9f9;
}

.angie-chat-footer-7ef209b0 input:focus {
    border-color: #4054B2;
    background: #fff;
}

.angie-chat-footer-7ef209b0 button {
    background-color: #4054B2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.angie-chat-footer-7ef209b0 button:hover {
    background-color: #303f8a;
}

.angie-chat-footer-7ef209b0 button:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    .angie-chat-window-7ef209b0 {
        width: calc(100vw - 40px);
        height: 70vh;
        bottom: 75px;
    }
    .angie-clinic-chat-container-7ef209b0 {
        left: 20px;
        bottom: 20px;
    }
}
