#ai-receptionist-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: Arial, sans-serif;
    z-index: 999999;
}

#ai-receptionist-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #1e73be;
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#ai-receptionist-window {
    display: none;
    width: 330px;
    height: 430px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    overflow: hidden;
    margin-bottom: 12px;
}

#ai-receptionist-header {
    background: #1e73be;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ai-receptionist-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

#ai-receptionist-messages {
    height: 310px;
    padding: 12px;
    overflow-y: auto;
    background: #f7f7f7;
}

.ai-message,
.user-message {
    padding: 9px 11px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
}

.ai-message {
    background: white;
    color: #222;
}

.user-message {
    background: #1e73be;
    color: white;
    margin-left: auto;
}

#ai-receptionist-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#ai-receptionist-input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
}

#ai-receptionist-send {
    border: none;
    background: #1e73be;
    color: white;
    padding: 0 14px;
    cursor: pointer;
}