/* Widget Chat - Styl główny */
.chat-widget-container {
    position: fixed;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.chat-widget-container.bottom-right {
    bottom: 20px;
    right: 20px;
}

.chat-widget-container.bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Przycisk otwierający chat */
.chat-widget-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6366f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
}