.llm-buttons-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    flex-wrap: wrap;
}

.llm-buttons-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 15px;
}

.llm-buttons-list {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.llm-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #4b5563 !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.llm-button:hover {
    color: #111827 !important;
    transform: translateY(-2px) !important;
}

.llm-icon {
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.llm-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 600px) {
    .llm-buttons-container {
        gap: 8px;
    }
}