.gozaky-chat-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
}

.gozaky-chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 550px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 9998;
}

.gozaky-chat-header {
    padding: 16px;
    background: #3498db;
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gozaky-chat-header h3 {
    margin: 0;
    font-size: 16px;
}

#gozaky-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.gozaky-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f9f9f9;
}

.gozaky-message {
    margin-bottom: 12px;
    display: flex;
}

.gozaky-message-content {
    padding: 10px 14px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.gozaky-message-user {
    justify-content: flex-end;
}

.gozaky-message-user .gozaky-message-content {
    background: #3498db;
    color: white;
}

.gozaky-message-agent .gozaky-message-content {
    background: white;
    color: #333;
}

.gozaky-chat-input {
    padding: 12px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 8px;
}

.gozaky-chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.gozaky-chat-input button {
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.gozaky-debug-info {
    font-size: 10px;
    padding: 8px;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    color: #666;
}
