.proxsa-ai-widget {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.proxsa-ai-button {
    background-color: var(--proxsa-ai-primary-color, #000);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.proxsa-ai-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.proxsa-ai-button i {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proxsa-ai-container {
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    margin-bottom: 15px;
    overflow: hidden;
    transform-origin: bottom right;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* Adjust alignment based on position class */
.proxsa-ai-widget.proxsa-ai-left {
    align-items: flex-start;
}
.proxsa-ai-widget.proxsa-ai-left .proxsa-ai-container {
    transform-origin: bottom left;
}

@media (max-width: 480px) {
    .proxsa-ai-container {
        width: 90vw;
        height: 70vh;
        right: 5vw; /* If default right */
    }
}
