.axiomatix-chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    border: none;
}

.axiomatix-chat-fab:hover {
    transform: scale(1.05);
}

.axiomatix-chat-fab img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.axiomatix-chat-sheet {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

.axiomatix-sheet-header {
    padding: 15px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.axiomatix-agent-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.axiomatix-agent-title {
    font-weight: 600;
    font-size: 16px;
}

.axiomatix-agent-status {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.axiomatix-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 5px;
}

.axiomatix-sheet-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}

.axiomatix-sheet-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.axiomatix-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f8fafc;
    max-height: 350px;
}

.axiomatix-msg {
    margin-bottom: 12px;
    display: flex;
}

.axiomatix-msg.axiomatix-user {
    justify-content: flex-end;
}

.axiomatix-bubble {
    padding: 10px 14px;
    border-radius: 18px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
}

.axiomatix-user .axiomatix-bubble {
    background: #06b6d4;
    color: #ffffff;
}

.axiomatix-bot .axiomatix-bubble {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

.axiomatix-typing .axiomatix-bubble {
    background: #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

.axiomatix-composer {
    padding: 15px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
}

.axiomatix-composer input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.axiomatix-composer input:focus {
    border-color: #06b6d4;
}

.axiomatix-composer button {
    padding: 10px 16px;
    background: #06b6d4;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.axiomatix-composer button:hover {
    background: #0891b2;
}

/* Desktop Panel Styles */
.axiomatix-agent-panel {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px 0;
}

.axiomatix-agent-header {
    padding: 15px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .axiomatix-chat-sheet {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }
}